Example #1
0
 public MapPoint[] TryLocationsToPixels(MapLocation[] locations, MapPointReference pointReference)
 {
     return null;
 }
Example #2
0
 public MapPoint TryLocationToPixel(MapLocation location, MapPointReference pointReference)
 {
     return null;
 }
Example #3
0
 public MapPolyline(MapLocation[] locations, MapPolylineOptions options)
 {
 }
Example #4
0
 public MapPolygon(MapLocation[] locations, MapPolygonOptions options)
 {
 }
Example #5
0
 public MapPushpin(MapLocation location)
 {
 }
Example #6
0
 public void SetLocation(MapLocation location)
 {
 }
Example #7
0
 public static MapBounds FromCorners(MapLocation northWest, MapLocation southEast)
 {
     return(null);
 }
Example #8
0
 public MapInfobox(MapLocation location)
 {
 }
Example #9
0
 public MapBounds(MapLocation center, double width, double height)
 {
 }
Example #10
0
 public bool Contains(MapLocation location)
 {
     return(false);
 }
 public MapPoint TryLocationToPixel(MapLocation location, MapPointReference pointReference)
 {
     return(null);
 }
 public MapPoint TryLocationToPixel(MapLocation location)
 {
     return(null);
 }
Example #13
0
 public static bool AreEqual(MapLocation location1, MapLocation location2)
 {
     return(false);
 }
Example #14
0
 public bool Contains(MapLocation location) {
     return false;
 }
Example #15
0
 public MapPushpin(MapLocation location)
 {
 }
Example #16
0
 public static MapLocationRect FromCorners(MapLocation northwest, MapLocation southeast)
 {
     return(null);
 }
Example #17
0
 public MapPushpin(MapLocation location, MapPushpinOptions options)
 {
 }
Example #18
0
 public MapInfobox(MapLocation location, MapInfoboxOptions options)
 {
 }
 public MapInfobox(MapLocation location)
 {
 }
Example #20
0
 public MapPushpin(MapLocation location, MapPushpinOptions options)
 {
 }
 public MapInfobox(MapLocation location, MapInfoboxOptions options)
 {
 }
Example #22
0
 public MapPolyline(MapLocation[] locations)
 {
 }
 public void SetLocation(MapLocation location)
 {
 }
Example #24
0
 public MapPolygon(MapLocation[] locations)
 {
 }
Example #25
0
 public void SetLocations(MapLocation[] locations) {
 }
Example #26
0
 public MapPoint[] TryLocationsToPixels(MapLocation[] locations)
 {
     return null;
 }
Example #27
0
 public static bool AreEqual(MapLocation location1, MapLocation location2)
 {
     return false;
 }
Example #28
0
 public MapPoint TryLocationToPixel(MapLocation location)
 {
     return null;
 }
Example #29
0
        private static void ShowFavorites() {
            _model.ShowFavorites();

            int favoriteCount = _model.Photos.Count;
            if (favoriteCount != 0) {
                MapLocation[] locations = new MapLocation[favoriteCount];

                for (int i = 0; i < favoriteCount; i++) {
                    locations[i] = new MapLocation(_model.Photos[i].latitude, _model.Photos[i].longitude);
                }

                MapViewOptions viewOptions = new MapViewOptions();
                viewOptions.Bounds = MapBounds.FromLocations(locations);
                viewOptions.Animate = true;

                _map.SetView(viewOptions);
                UpdatePhotos(/* newPhotos */ false);
            }
        }
Example #30
0
 public MapBounds(MapLocation center, double width, double height) {
 }
Example #31
0
        private static void UpdatePhotos(bool newPhotos) {
            if (newPhotos) {
                if (_mapEntities != null) {
                    _map.Entities.Remove(_mapEntities);
                }

                _mapEntities = new MapEntityCollection();
                _map.Entities.Push(_mapEntities);

                _photoViews = new Dictionary<string, PhotoView>();
            }

            if (_model.Photos.Count == 0) {
                Document.Body.ClassName = MapModeClassName;
                return;
            }

            Document.Body.ClassName = PhotosModeClassName;

            _graph = new Graph();
            _model.Photos.ForEach(delegate(Photo photo) {
                MapLocation location = new MapLocation(photo.latitude, photo.longitude);
                MapPoint point = _map.TryLocationToPixel(location, MapPointReference.Control);

                PhotoView photoView;
                if (newPhotos) {
                    MapPolylineOptions connectorOptions = new MapPolylineOptions();
                    connectorOptions.StrokeColor = new MapColor(255, 0x4E, 0xD3, 0x4E);
                    connectorOptions.StrokeThickness = 2;

                    MapInfoboxOptions calloutOptions = new MapInfoboxOptions();
                    calloutOptions.Width = 50;
                    calloutOptions.Height = 50;
                    calloutOptions.ShowPointer = false;
                    calloutOptions.ShowCloseButton = false;
                    calloutOptions.Offset = new MapPoint(-25, -25);
                    calloutOptions.HtmlContent =
                        "<div class=\"photoInfobox\" style=\"background-image: url(" + photo.thumbnailUrl + ")\"" +
                        " title=\"" + photo.title.HtmlEncode() + "\"></div>";
                    calloutOptions.Visible = true;

                    MapPushpinOptions pushpinOptions = new MapPushpinOptions();
                    pushpinOptions.Icon = "Dot.png";
                    pushpinOptions.Width = 10;
                    pushpinOptions.Height = 10;
                    pushpinOptions.Anchor = new MapPoint(5, 5);
                    pushpinOptions.TypeName = "locationPushpin";

                    photoView = new PhotoView();
                    photoView.pushpin = new MapPushpin(location, pushpinOptions);
                    photoView.connector = new MapPolyline(new MapLocation[] { location, location }, connectorOptions);
                    photoView.callout = new MapInfobox(location, calloutOptions);
                    photoView.callout.Data = photo;
                    _photoViews[photo.id] = photoView;

                    _mapEntities.Insert(photoView.connector, 0);
                    _mapEntities.Insert(photoView.callout, 0);
                    _mapEntities.Insert(photoView.pushpin, 0);
                    MapEvents.AddHandler(photoView.callout, "click", delegate(MapEventArgs e) {
                        ShowPhoto(photo);
                    });
                }
                else {
                    photoView = _photoViews[photo.id];
                }

                photoView.pushpinNode = new GraphNode();
                photoView.pushpinNode.x = point.X;
                photoView.pushpinNode.y = point.Y;
                photoView.pushpinNode.moveable = false;

                photoView.calloutNode = new GraphNode();
                photoView.calloutNode.x = point.X;
                photoView.calloutNode.y = point.Y;

                GraphEdge connectorEdge = new GraphEdge(photoView.pushpinNode,
                                                        photoView.calloutNode,
                                                        10 + Math.Random() * 15);

                _graph.AddNode(photoView.pushpinNode);
                _graph.AddNode(photoView.calloutNode);
                _graph.AddEdge(connectorEdge);
            });

            Window.SetTimeout(UpdateLayout, 30);
        }
Example #32
0
 public static MapBounds FromCorners(MapLocation northWest, MapLocation southEast) {
     return null;
 }
Example #33
0
 public MapLocationRect(MapLocation center, int width, int height)
 {
 }