Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FeatureCollection in GeoJSON file possible? #170

Open
snsxn opened this issue Mar 7, 2020 · 2 comments
Open

FeatureCollection in GeoJSON file possible? #170

snsxn opened this issue Mar 7, 2020 · 2 comments

Comments

@snsxn
Copy link

snsxn commented Mar 7, 2020

I can’t figure out how to load a geojson file with an array of multiple features as featurecollection.
Maybe it can’t do it?

@rognstad
Copy link

rognstad commented Apr 2, 2020

It would really help if the documentation had working examples. FeatureCollections do work. Have you tried validating the geojson? http://geojson.io/ http://geojsonlint.com/

Your geojson source should look something like this:

{
	data: {
		features: [
			{
				geometry: {
					coordinates: [
						[longitude, latitude]
					],
					type: "Point" // or some other valid geojson type
				},
				properties: {},
				type: "Feature"
			}
		],
		id: "some-id"
		type: "FeatureCollection"
	},
	type: "geojson"
}

@tommed
Copy link

tommed commented Apr 17, 2020

Documentation definitely needs working examples please!
The main site is out of date (or just not working).

I got it working with the following:

import { parse } from 'wellknown'

export default {
    computed: {
        layerConfig() {
            return { type: 'fill', paint: { 'fill-color': '#ff0000', 'fill-opacity': 0.1 } };
        },
        source() {
            const geoJson = parse('POLYGON((7.109374999999982 51.55050197847774,12.382812499999982 53.16067087751812,13.085937499999982 42.213139626323134,-2.9101562500000178 52.093749599982466,4.208984374999982 52.470132527618325,7.109374999999982 51.55050197847774))'),
            return { type: 'geojson', data: geoJson }
        }
    }
}

then...

<MglGeojsonLayer
      type="fill"
      :sourceId="`source_1`"
      :layerId="`layer_1`"
      :source="source"
      :layer="layerConfig"
      @click="(e) => $emit('click', e)"
    />

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants