https://github.com/lewagon/google-maps-snazzy-themes
Snazzy Maps theme for Gmaps
https://github.com/lewagon/google-maps-snazzy-themes
Last synced: about 1 year ago
JSON representation
Snazzy Maps theme for Gmaps
- Host: GitHub
- URL: https://github.com/lewagon/google-maps-snazzy-themes
- Owner: lewagon
- Created: 2014-07-30T14:46:50.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-18T14:06:09.000Z (over 11 years ago)
- Last Synced: 2025-01-11T06:45:56.328Z (over 1 year ago)
- Homepage:
- Size: 113 KB
- Stars: 5
- Watchers: 7
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Embed a Google Map
```html
var myLatlng = new google.maps.LatLng(48.852937,2.364178);
var myOptions = {
zoom: 14,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
styles: []
};
var map = new google.maps.Map(document.getElementById('map'), myOptions);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"You are here!"
});
```
You can change the map style with [Snazzy Maps](http://snazzymaps.com/)