Beispiel #1
0
 public void MapSetCenterZoom(LatLng center, Int32 zoom, Map mapJsObj)
 {
     HtmlPage.Window.Eval(mapJsObj.Id + ".setCenter(new GLatLng(" + center.ToString() + ")," + zoom.ToString() + ");");
 }
Beispiel #2
0
 public void ShapeMarkerSetPoint(MapShapes shape, LatLng point)
 {
     HtmlPage.Window.Eval(shape.Id + ".setLatLng(new GLatLng(" + point.ToString() + "));");
 }