How to get google maps style from a embedded map

viciouskinid

I am trying to get the style of the google map used on this site

http://mundomaya.travel/#explora

so i can uses a similar one on my site.

I have learnt about styling maps here

https://developers.google.com/maps/documentation/javascript/styling?csw=1

but I cannot find their code.

any help would be appreciated.


ok I think they have just got TERRAIN set. where do they do this?

geocodezip

They are not using styled maps. They are using the "terrain" maptype (google.maps.MapTypeId.TERRAIN). They initialize it that way in the initialize function in this external javascript

function initialize(maptype,scrollwheel){
  maptype=google.maps.MapTypeId.TERRAIN;
  var latlng=new google.maps.LatLng(18.4,-90.3);
  var myOptions={
    zoom:5,center:latlng,
    mapTypeId:maptype,
    scrollwheel:scrollwheel, 
    panControl:false,
    streetViewControl:false,
    zoomControl:true,
    zoomControlOptions:{
      position:google.maps.ControlPosition.LEFT_BOTTOM
    },
    mapTypeControl:true,
    mapTypeControlOptions:{
      position:google.maps.ControlPosition.LEFT_BOTTOM},
    };
    map=new google.maps.Map(document.getElementById("map_canvas"),myOptions);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Removing the info window from an embedded map in the new Google Maps

From Dev

Removing the info window from an embedded map in the new Google Maps

From Dev

How to style default map marker in Google maps angular plugin

From Dev

How can I click on a pin in a Google map embedded from JavaScript?

From Dev

Google Maps: Add a marker to the embedded Google map without their API

From Dev

How to use the map from maps.google.ae (map for UAE) instead of map from maps.google.com

From Dev

How to use the map from maps.google.ae (map for UAE) instead of map from maps.google.com

From Dev

How to zoom out embedded google maps?

From Dev

how to display a map location from your website using google maps

From Dev

How to show map with Google Maps?

From Dev

How to style editable circle controls in Google Maps

From Dev

Google maps API - get my custom map

From Dev

Get map location of viewport with angular google maps

From Dev

Cannot pass dynamically map style in angular-google-maps

From Dev

How to get navigation duration with traffic from google maps api?

From Dev

How to get static image from google maps in iOS

From Dev

How to get MapPanes from Google Maps JS API

From Dev

How to get the city name and state/province from marker on google maps

From Dev

AngularJS how to get data from <textarea> prefilled by Google Maps script

From Dev

How get latitude and longitude from an Android listview and put it in google maps?

From Dev

How to get import google maps?

From Dev

how to make google map snippet and directly move to google maps from iOS app?

From Dev

Get largest Map from an RDD of Array of Maps

From Dev

how to get address from gms marker from google map?

From Dev

How to make a round map ? using google maps

From Dev

Embedded Google Maps in Rails not responsive

From Dev

Embedded Google Maps in Rails not responsive

From Dev

How to get location from Google Map after dropping Pin over it

From Java

How to get address location from latitude and longitude in Google Map.?

Related Related

  1. 1

    Removing the info window from an embedded map in the new Google Maps

  2. 2

    Removing the info window from an embedded map in the new Google Maps

  3. 3

    How to style default map marker in Google maps angular plugin

  4. 4

    How can I click on a pin in a Google map embedded from JavaScript?

  5. 5

    Google Maps: Add a marker to the embedded Google map without their API

  6. 6

    How to use the map from maps.google.ae (map for UAE) instead of map from maps.google.com

  7. 7

    How to use the map from maps.google.ae (map for UAE) instead of map from maps.google.com

  8. 8

    How to zoom out embedded google maps?

  9. 9

    how to display a map location from your website using google maps

  10. 10

    How to show map with Google Maps?

  11. 11

    How to style editable circle controls in Google Maps

  12. 12

    Google maps API - get my custom map

  13. 13

    Get map location of viewport with angular google maps

  14. 14

    Cannot pass dynamically map style in angular-google-maps

  15. 15

    How to get navigation duration with traffic from google maps api?

  16. 16

    How to get static image from google maps in iOS

  17. 17

    How to get MapPanes from Google Maps JS API

  18. 18

    How to get the city name and state/province from marker on google maps

  19. 19

    AngularJS how to get data from <textarea> prefilled by Google Maps script

  20. 20

    How get latitude and longitude from an Android listview and put it in google maps?

  21. 21

    How to get import google maps?

  22. 22

    how to make google map snippet and directly move to google maps from iOS app?

  23. 23

    Get largest Map from an RDD of Array of Maps

  24. 24

    how to get address from gms marker from google map?

  25. 25

    How to make a round map ? using google maps

  26. 26

    Embedded Google Maps in Rails not responsive

  27. 27

    Embedded Google Maps in Rails not responsive

  28. 28

    How to get location from Google Map after dropping Pin over it

  29. 29

    How to get address location from latitude and longitude in Google Map.?

HotTag

Archive