示例#1
0
 /// <summary>
 /// Comparison function.
 /// </summary>
 public bool Equals(LatLng other)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public void SetPosition(LatLng latlng)
 {
     throw new NotImplementedException();
 }
示例#3
0
 /// <summary>
 /// Geocode a request.
 /// </summary>
 /// /// <summary>
 /// Returns the maximum zoom level available at a particular LatLng for the Satellite map type. As this request is asynchronous, you must pass a callback function which will be executed upon completion of the request, being passed a MaxZoomResult.
 /// </summary>    
 public void GetMaxZoomAtLatLng(LatLng latlng, Callback callback)
 {
     throw new NotImplementedException();
 }
示例#4
0
文件: Map.cs 项目: CodeFork/Serenity
 /// <summary>
 /// Changes the center of the map to the given LatLng.  If the change is less than both the width and height of the map, the transition will be smoothly animated.
 /// </summary>
 public void PanTo(LatLng latLng)
 {
     throw new NotImplementedException();
 }
示例#5
0
 /// <summary>
 /// Returns true if the given lat/lng is in this bounds.
 /// </summary>
 public bool Contains(LatLng latlng)
 {
     throw new NotImplementedException();
 }
示例#6
0
 /// <summary>
 /// Extends this bounds to contain the given point.
 /// </summary>
 public LatLngBounds Extend(LatLng point)
 {
     throw new NotImplementedException();
 }
示例#7
0
 /// <summary>
 /// A LatLngBounds instance represents a rectangle in geographical coordinates, including one that crosses the 180 degrees longitudinal meridian.
 /// </summary>
 public LatLngBounds(LatLng sw)
 {
 }
示例#8
0
 /// <summary>
 /// A LatLngBounds instance represents a rectangle in geographical coordinates, including one that crosses the 180 degrees longitudinal meridian.
 /// </summary>
 public LatLngBounds(LatLng sw, LatLng ne)
 {
 }
示例#9
0
 /// <summary>
 /// Translates from the LatLng cylinder to the Point plane. This interface specifies a function which implements translation from given LatLng values to world coordinates on the map projection. The Maps API calls this method when it needs to plot locations on screen. Projection objects must implement this method.
 /// </summary>
 public Point FromLatLngToPoint(LatLng latLng, Point point)
 {
     throw new NotImplementedException();
 }
示例#10
0
 /// <summary>
 /// Retrieves the StreetViewPanoramaData for a panorama within a given radius of the given LatLng.  The StreetViewPanoramaData is passed to the provided callback. If the radius is less than 50 meters, the nearest panorama will be returned.
 /// </summary>
 public void GetPanoramaByLocation(LatLng latlng, double radius, Callback callback)
 {
     throw new NotImplementedException();
 }
示例#11
0
 /// <summary>
 /// Computes the pixel coordinates of the given geographical location in the DOM element that holds the draggable map.
 /// </summary>
 public Point FromLatLngToDivPixel(LatLng latLng)
 {
     throw new NotImplementedException();
 }
示例#12
0
 /// <summary>
 /// Sets the center of this circle.
 /// </summary>
 public void SetCenter(LatLng center)
 {
     throw new NotImplementedException();
 }
示例#13
0
 public void SetPosition(LatLng position)
 {
     throw new NotImplementedException();
 }