Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ExploremapsShowPlaceTask showPlace = new ExploremapsShowPlaceTask();
  2. showPlace.Location = new GeoCoordinate((Double)watcher.Position.Location.Latitude, (Double)watcher.Position.Location.Longitude);
  3. showPlace.Zoom = 40;
  4. showPlace.Title = "My Place";
  5. showPlace.Show();
  6.  
  7. ExploremapsSearchPlacesTask searchMap = new ExploremapsSearchPlacesTask();
  8. searchMap.Location = new GeoCoordinate(60.35, 24.60);
  9. searchMap.SearchTerm = "Hotel";
  10. searchMap.Show();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement