I created geojson turkey map on geojson.io. It works on geojson.io with no trouble.But it doesnt work on dc.js choropleth map.
I checked it with us-states.json on my codes it works but my geojson map doesnt work.
Here My created geojson:
I created geojson turkey map on geojson.io. It works on geojson.io with no trouble.But it doesnt work on dc.js choropleth map.
I checked it with us-states.json on my codes it works but my geojson map doesnt work.
Here My created geojson:
Without your code, hard to answer, but the problems I have usually with dc.js choropleth is
1) not using the right selector or key for overlayGeoJson(yourJson.features, "selector", function(d) { return d.name; });
use jQuery/underscore/d3 to test your selector
2) not defining the projection (eg. mercator)
.projection(d3.geo.mercator())
3) having the wrong scale/transform Here the map is properly drawn, but not in a visible scale
.scale(something)
.translate([x, y]))
But share your code (preferably on jfiddle), so we can have a look at it