Last active
August 29, 2015 14:21
-
-
Save mapsense-examples/fbe8a7371bec7f53aaa1 to your computer and use it in GitHub Desktop.
Put a point on it
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='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="http://d3js.org/topojson.v1.min.js" charset="utf-8"></script> | |
<script src="https://developer.mapsense.co/mapsense.js" charset="utf-8"></script> | |
<link type="text/css" href="https://developer.mapsense.co/mapsense.css" rel="stylesheet"/> | |
<style> | |
html, body, #myMap{ | |
height: 100%; | |
width: 100%; | |
margin: 0; padding: 0; | |
} | |
.point { | |
fill: rgba(255,0,0, 0.4); | |
stroke: rgba(230, 0, 0, 1); | |
stroke-width: .5; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="myMap"></div> | |
<script> | |
var map = mapsense.map("#myMap"); //tell it where to go | |
map.add( | |
mapsense.basemap() | |
.apiKey("key-2d5eacd8b924489c8ed5e8418bd883bc") | |
) | |
.center( {lon: -122.463, lat: 37.765}) //set a center | |
.zoom(10); //set a zoom | |
var point = [markLatLon(37.78709, -122.41094)]; // a geojson features array | |
pt_layer = mapsense.geoJson() | |
.features(point) | |
.selection(function(d){ | |
d.attr("class", "point") | |
.attr("r", "10"); | |
}) | |
.scale("fixed"); | |
map.add(pt_layer); | |
function markLatLon(lat,lon,name){ | |
name = name || ""; | |
var feature = { | |
type: "Feature", | |
geometry: {type: "Point", "coordinates": [ +lon, +lat ]}, | |
}; | |
return feature; | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment