I want to plot a geojson file with observable plot geo mark but it is zoomed in very much: Düsseldorf / RND | Observable
How can I fix this?
I want to plot a geojson file with observable plot geo mark but it is zoomed in very much: Düsseldorf / RND | Observable
How can I fix this?
You need to reverse the winding order of your GeoJSON to match D3’s expectations. Here is one way:
düsseldorf_geojson = rewind(await FileAttachment("düsseldorf_stadtteile.geojson").json())
import {rewind} from "@fil/rewind"
For more, see:
Thank you, that fixed it. And by the way: Great work!