Exemplo n.º 1
0
 public Task SetMapTypeId(string id, MapTypeId mapTypeId)
 {
     return(_jsRuntime.JsonNetInvokeAsync <int>(
                "googleMapJsFunctions.setMapTypeId",
                id,
                mapTypeId));
 }
 public GoogleV3TileSource(string googleClientID, string googleChannel, string baseUrl, MapTypeId mapType)
 {
     _tileSchema = new GoogleMaps.GoogleV3TileSchema(googleClientID, googleChannel, baseUrl, mapType);
     if (!string.IsNullOrEmpty(baseUrl))
         _googleMapsTP = new GoogleMaps.GoogleV3TileProvider(_tileSchema);
     else
         _googleMapsTP = new GoogleMaps.GoogleV3TileProvider(_tileSchema, baseUrl);
 }
Exemplo n.º 3
0
 public Task SetMapTypeId(MapTypeId mapTypeId)
 {
     return(JsRuntime.InvokeWithDefinedGuidAndMethodAsync <object>(
                "googleMapJsFunctions.invoke",
                DivId,
                "setMapTypeId",
                mapTypeId));
 }
Exemplo n.º 4
0
 public Task SetMapTypeId(MapTypeId mapTypeId)
 {
     return(_jsObjectRef.InvokeAsync("setMapTypeId", mapTypeId));
 }
 public GoogleV3TileSource(MapTypeId mapType)
     : this(null, null, null, mapType)
 {
 }
Exemplo n.º 6
0
 public void SetMapTypeId(MapTypeId mapTypeId)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public void SetMapTypeId(MapTypeId mapTypeId)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 8
0
 public GoogleV3TileSource(string googleClientID, string googleChannel, string baseUrl, MapTypeId mapType)
 {
     m_tileSchema = new GoogleV3TileSchema(googleClientID, googleChannel, baseUrl, mapType);
     m_googleMapsTp = !string.IsNullOrEmpty(baseUrl) ? new GoogleV3TileProvider(m_tileSchema) : new GoogleV3TileProvider(m_tileSchema, baseUrl);
 }
Exemplo n.º 9
0
 public GoogleV3TileSource(MapTypeId mapType)
     : this(null, null, null, mapType)
 {
 }
Exemplo n.º 10
0
 public GoogleV3TileSource(string googleClientID, string googleChannel, string baseUrl, MapTypeId mapType)
 {
     m_tileSchema   = new GoogleV3TileSchema(googleClientID, googleChannel, baseUrl, mapType);
     m_googleMapsTp = !string.IsNullOrEmpty(baseUrl) ? new GoogleV3TileProvider(m_tileSchema) : new GoogleV3TileProvider(m_tileSchema, baseUrl);
 }