I'm using Mapbox 2.1 and I'm trying to build a chloropleth map from a GeoJSON source, working from this example: https://www.mapbox.com/mapbox.js/example/v1.0.0/choropleth/
However, I've fallen at the first hurdle, because my GeoJSON source is a pure GeoJSON file, not a JS file like their example.
So this line doesn't work for me:
var statesLayer = L.geoJson(statesData, {
style: getStyle,
onEachFeature: onEachFeature
}).addTo(map);
Their JS file defines statesData
as a variable:
var statesData = { "type": "FeatureCollection" ... };
But my GeoJSON file is just a GeoJSON file.
How can I define the equivalent of statesData
so that I can follow the example?
I guess I could use eval
to read in the GeoJSON, but that's generally a bad idea.
You can use ajax to snag the data from your own site
Here is a jquery way of doing it.