コード例 #1
0
ファイル: InfoWindow.cs プロジェクト: Kingefosa/Serenity
 /// <summary>
 /// Opens this InfoWindow on the given map.  Optionally, an InfoWindow can be associated with an anchor.  In the core API, the only anchor is the Marker class.  However, an anchor can be any MVCObject that exposes the position property and optionally anchorPoint for calculating the pixelOffset (see InfoWindowOptions).  The anchorPoint is the offset from the anchor's position to the tip of the InfoWindow.
 /// </summary>
 public void Open(Map map, MVCObject anchor)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Marker.cs プロジェクト: Kingefosa/Serenity
 /// <summary>
 /// Renders the marker on the specified map or panorama.  If map is set to null, the marker will be removed.
 /// </summary>
 public void SetMap(Map map)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: InfoWindow.cs プロジェクト: Kingefosa/Serenity
 /// <summary>
 /// Opens this InfoWindow on the given map.  Optionally, an InfoWindow can be associated with an anchor.  In the core API, the only anchor is the Marker class.  However, an anchor can be any MVCObject that exposes the position property and optionally anchorPoint for calculating the pixelOffset (see InfoWindowOptions).  The anchorPoint is the offset from the anchor's position to the tip of the InfoWindow.
 /// </summary>
 public void Open(Map map)
 {
     throw new NotImplementedException();
 }