Last active
January 17, 2017 04:15
-
-
Save maptastik/525f80a5a6a61cc9aa31ba9b239e0b41 to your computer and use it in GitHub Desktop.
jQuery Geo - Single Marker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>jQuery Geo - Starter</title> | |
<style> | |
body {margin: 0;padding: 0;} | |
#map { | |
position: absolute; | |
top: 0; bottom: 0; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Draw the map here --> | |
<div id="map"></div> | |
<script src="http://code.jquery.com/jquery-2.2.4.min.js"></script> | |
<script src="http://code.jquerygeo.com/jquery.geo-1.0.0-rc1.min.js"></script> | |
<script> | |
$(function(){ | |
// set up the map | |
var map = $("#map").geomap({ | |
center: [-85.632935, 37.857507], | |
zoom: 7, | |
services: [{ | |
id: "toner", | |
type: "tiled", | |
src:"http://a.basemaps.cartocdn.com/light_all/{{:zoom}}/{{:tile.column}}/{{:tile.row}}.png" | |
}] | |
}); | |
// ADD A SINGLE MARKER TO THE MAP | |
$("#map").geomap("append", | |
{ | |
type: "Point", | |
coordinates: [-84.558831, 38.209797] // Coordinates are lng/lat | |
}, | |
{ | |
height: 20, | |
width: 20, | |
borderRadius: 20, | |
color: "#2196F3", | |
fillOpacity: 0.75, | |
stroke: "#212121", | |
strokeWidth: 1 | |
} | |
); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment