google map with map chart on it. #9375
-
I was trying to use the Google Maps API and was using some extensions to get the google map but I wanted to have the map chart over it according to the different zip codes of that state. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There are many ways to archive an overlay( = the semi transparent blue polygons you see, in this case called a choropleth ) on a Google maps base layer other than the Google Maps Api. But since you asked for using a Google api based solution I would take a look at this Vue Google maps library: Especially take a look at the examples to see if you can create an overlay with filled polygons like the zip code example of your image.( you'll need an api key from google, very easy to obtain ) Examples: If you want a more comprehensive way of displaying GIS data on web pages you should read up on Geoserver, Openlayers, Leaflet, Mapbox, ect. |
Beta Was this translation helpful? Give feedback.
@bagladivyang03
There are many ways to archive an overlay( = the semi transparent blue polygons you see, in this case called a choropleth ) on a Google maps base layer other than the Google Maps Api.
But since you asked for using a Google api based solution I would take a look at this Vue Google maps library:
https://github.com/diegoazh/gmap-vue
Especially take a look at the examples to see if you can create an overlay with filled polygons like the zip code example of your image.( you'll need an api key from google, very easy to obtain )
Examples:
https://diegoazh.github.io/gmap-vue/examples/
If you want a more comprehensive way of displaying GIS data on web pages you should read up on Ge…