コード例 #1
0
ファイル: LatLng.cs プロジェクト: CodeFork/Serenity
 /// <summary>
 /// Comparison function.
 /// </summary>
 public bool Equals(LatLng other)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Marker.cs プロジェクト: Kingefosa/Serenity
 public void SetPosition(LatLng latlng)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: MaxZoomService.cs プロジェクト: CodeFork/Serenity
 /// <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
ファイル: LatLngBounds.cs プロジェクト: Kingefosa/Serenity
 /// <summary>
 /// Returns true if the given lat/lng is in this bounds.
 /// </summary>
 public bool Contains(LatLng latlng)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
ファイル: LatLngBounds.cs プロジェクト: Kingefosa/Serenity
 /// <summary>
 /// Extends this bounds to contain the given point.
 /// </summary>
 public LatLngBounds Extend(LatLng point)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
ファイル: LatLngBounds.cs プロジェクト: Kingefosa/Serenity
 /// <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
ファイル: LatLngBounds.cs プロジェクト: Kingefosa/Serenity
 /// <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
ファイル: Projection.cs プロジェクト: Kingefosa/Serenity
 /// <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
ファイル: Circle.cs プロジェクト: CodeFork/Serenity
 /// <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();
 }