Skip to content

Instantly share code, notes, and snippets.

/map

Created April 20, 2016 11:25
Show Gist options
  • Save anonymous/9abda18f853f2175ebe3d9e01e7b1090 to your computer and use it in GitHub Desktop.
Save anonymous/9abda18f853f2175ebe3d9e01e7b1090 to your computer and use it in GitHub Desktop.
<script src="https://maps.google.com/maps/api/js?libraries=geometry&v=3.22&key=my-key">
</script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="/assets/maplace.min.js"></script>
<script type="text/javascript">
$(function() {
new Maplace({
show_markers: true,
locations: [{
lat: 20.5937,
lon: 78.9629,
zoom: 5
}]
}).Load();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment