Hi, as said in the title i cant get any ShapeSource that i try to render, my code is almost the example from mapbox site i have tried with complex geojson and with realy simples ones but they just wont render, i tested on physical device and on emulator. (device Android 6 emulator android 7) i lost around 6-7 hours trying to solve this but got no luck. here is the code:
import React, { Component } from 'react';
import { StyleSheet, View } from 'react-native';
import MapboxGL from '@mapbox/react-native-mapbox-gl';
import payshop from './assets/payshop.json';
MapboxGL.setAccessToken('MY TOKEN');
export default class App extends Component<{}> {
render() {
return (
<View style={styles.container}>
<MapboxGL.MapView
styleURL={MapboxGL.StyleURL.Dark}
zoomLevel={15}
centerCoordinate={[-8.4100617, 41.5568578]}
style={styles.container}
showUserLocation={true}>
<MapboxGL.ShapeSource id="payshop" shape={payshop}></MapboxGL.ShapeSource>
</MapboxGL.MapView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
the current geojson and the one i really need to render its this one:
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Name": "Café Creme", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4051338, 41.5823168] } },
{ "type": "Feature", "properties": { "Name": "Tabacaria Amorim", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4234372, 41.5539826] } },
{ "type": "Feature", "properties": { "Name": "Café Duarte & Loureiro, Lda.", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.425107, 41.5594924] } },
{ "type": "Feature", "properties": { "Name": "Tabacaria Cafetaria Central", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4253704, 41.5553033] } },
{ "type": "Feature", "properties": { "Name": "Alma de Pensador I", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.422886, 41.5522383] } },
{ "type": "Feature", "properties": { "Name": "Posto Galp João XXI", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4094548, 41.5517857] } },
{ "type": "Feature", "properties": { "Name": "Kiosque dos Milhões", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4107973, 41.5609441] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Bracalândia", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4003112, 41.5542044] } },
{ "type": "Feature", "properties": { "Name": "Papelaria Nani Lda", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4120311, 41.5493411] } },
{ "type": "Feature", "properties": { "Name": "Café Enguardas", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4100617, 41.5568578] } },
{ "type": "Feature", "properties": { "Name": "Copykiosque", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4053081, 41.5460989] } },
{ "type": "Feature", "properties": { "Name": "Loja do Baixinho", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4068263, 41.5610204] } },
{ "type": "Feature", "properties": { "Name": "Quiosque UM", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3981439, 41.5582628] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Beatriz", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4113485, 41.5485208] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria Novo Século", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4353542, 41.5040036] } },
{ "type": "Feature", "properties": { "Name": "Café Between", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3935694, 41.5611308] } },
{ "type": "Feature", "properties": { "Name": "Posto Q8 Gualtar", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3814874, 41.5680584] } },
{ "type": "Feature", "properties": { "Name": "Tigest Gualtar", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3921492, 41.5612472] } },
{ "type": "Feature", "properties": { "Name": "Feira dos Frescos", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4752119, 41.5813678] } },
{ "type": "Feature", "properties": { "Name": "Café Cruzinha", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4954545, 41.5666617] } },
{ "type": "Feature", "properties": { "Name": "Papelaria Infante", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4957093, 41.4953323] } },
{ "type": "Feature", "properties": { "Name": "Café Braga", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4681617, 41.5254613] } },
{ "type": "Feature", "properties": { "Name": "Café Remo", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4859903, 41.5092582] } },
{ "type": "Feature", "properties": { "Name": "Top Leitura", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4341794, 41.5488671] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Pópulo", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4286205, 41.5518479] } },
{ "type": "Feature", "properties": { "Name": "Quiosque e Peras", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4339836, 41.5380466] } },
{ "type": "Feature", "properties": { "Name": "Posto Cepsa Maximinos", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4339514, 41.5483392] } },
{ "type": "Feature", "properties": { "Name": "Tabacaria Sortel", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4333419, 41.5450832] } },
{ "type": "Feature", "properties": { "Name": "Novo Quiosque", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4337395, 41.5461602] } },
{ "type": "Feature", "properties": { "Name": "Livraria Ponte dos Falcões", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4377776, 41.5411595] } },
{ "type": "Feature", "properties": { "Name": "Loja Galp Gás Electricidade", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4287711, 41.5502731] } },
{ "type": "Feature", "properties": { "Name": "Bugatti Bar", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4347641, 41.5554809] } },
{ "type": "Feature", "properties": { "Name": "Papelaria Tabacaria Brácara", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4104884, 41.5422013] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria Ivinha", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4210161, 41.5434452] } },
{ "type": "Feature", "properties": { "Name": "Campião Braga", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4242257, 41.5507289] } },
{ "type": "Feature", "properties": { "Name": "Tabacaria da Lapa", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4234358, 41.5514204] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Olga", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.425532, 41.5522895] } },
{ "type": "Feature", "properties": { "Name": "Dizeres d' Agora", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4186333, 41.5441798] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria São João", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4198216, 41.5455228] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Estrela da Sorte", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4214979, 41.549112] } },
{ "type": "Feature", "properties": { "Name": "note! Braga", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4204195, 41.5474666] } },
{ "type": "Feature", "properties": { "Name": "Loja do Fumador", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4228122, 41.5527994] } },
{ "type": "Feature", "properties": { "Name": "Alma de Pensador II", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.422544, 41.551876] } },
{ "type": "Feature", "properties": { "Name": "Pipa-livraria Papelaria Lda", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4929189, 41.5383051] } },
{ "type": "Feature", "properties": { "Name": "Café Snack Bar Carlyne", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4563678, 41.5154694] } },
{ "type": "Feature", "properties": { "Name": "Posto Galp Celeirós", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4517586, 41.5121204] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria Doce São Lourenço", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4542624, 41.5135618] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria Minhota, Lda.", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.442139, 41.462852] } },
{ "type": "Feature", "properties": { "Name": "Café Cruzeiro", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4389075, 41.5370429] } },
{ "type": "Feature", "properties": { "Name": "Bragadis - E'Leclerc", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4469038, 41.5334951] } },
{ "type": "Feature", "properties": { "Name": "Clip Dourado", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4394378, 41.5388273] } },
{ "type": "Feature", "properties": { "Name": "Papelaria Tabacaria Rúbrica", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4299952, 41.5356033] } },
{ "type": "Feature", "properties": { "Name": "Café Lola", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4677868, 41.5795982] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria Novo Doce 2", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4646677, 41.5856971] } },
{ "type": "Feature", "properties": { "Name": "Kiosk", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4006947, 41.5410039] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Lima's", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3955582, 41.5534553] } },
{ "type": "Feature", "properties": { "Name": "Café Quintas", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4455847, 41.5589212] } },
{ "type": "Feature", "properties": { "Name": "Minimercado Nazaré", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.432669, 41.5587614] } },
{ "type": "Feature", "properties": { "Name": "Posto de Abastecimento Dume", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4200227, 41.5645325] } },
{ "type": "Feature", "properties": { "Name": "Silabas Frenéticas", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4420987, 41.557327] } },
{ "type": "Feature", "properties": { "Name": "Frescos De Navarra", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3859544, 41.6098537] } },
{ "type": "Feature", "properties": { "Name": "Café Central", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4770859, 41.5085206] } },
{ "type": "Feature", "properties": { "Name": "Quiosque Bonjardim", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4185958, 41.543436] } },
{ "type": "Feature", "properties": { "Name": "KIOSKU", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4060699, 41.5579758] } },
{ "type": "Feature", "properties": { "Name": "QUIOSQUE A.R.J.P.", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4395801, 41.534893] } },
{ "type": "Feature", "properties": { "Name": "Tabacaria Camões 2", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4302473, 41.5786311] } },
{ "type": "Feature", "properties": { "Name": "Jota Quiosque", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4239442, 41.5497303] } },
{ "type": "Feature", "properties": { "Name": "Café \"Doce Praça\"", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4267122, 41.5538682] } },
{ "type": "Feature", "properties": { "Name": "Tabacaria Fujacal", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4206343, 41.5448985] } },
{ "type": "Feature", "properties": { "Name": "Loja do Paço 1", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4263152, 41.5505347] } },
{ "type": "Feature", "properties": { "Name": "Loja do Paço 2", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4284288, 41.5507464] } },
{ "type": "Feature", "properties": { "Name": "Loja Iberdrola", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4248641, 41.5560008] } },
{ "type": "Feature", "properties": { "Name": "Página Abstrata", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4527591, 41.5722414] } },
{ "type": "Feature", "properties": { "Name": "Posto BP - Martim", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.5095629, 41.5332843] } },
{ "type": "Feature", "properties": { "Name": "PRINCIPE QUIOSQUE", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.46672, 41.6048697] } },
{ "type": "Feature", "properties": { "Name": "Atrevomeasorte", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4025924, 41.5499982] } },
{ "type": "Feature", "properties": { "Name": "Papelaria MEMVM", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4138952, 41.5525083] } },
{ "type": "Feature", "properties": { "Name": "BP Palmeira", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4238207, 41.5736791] } },
{ "type": "Feature", "properties": { "Name": "Café Santa Cecília", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4750724, 41.5200071] } },
{ "type": "Feature", "properties": { "Name": "Duquesa de Lamaçães", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4013438, 41.5422757] } },
{ "type": "Feature", "properties": { "Name": "Meu Super Gualtar", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.3863905, 41.5663968] } },
{ "type": "Feature", "properties": { "Name": "Quiosque do Parque", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4118876, 41.5965544] } },
{ "type": "Feature", "properties": { "Name": "Pastelaria Novo Doce 3", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4272593, 41.5521545] } },
{ "type": "Feature", "properties": { "Name": "Novo Século", "description": null, "timestamp": null, "begin": null, "end": null, "altitudeMode": null, "tessellate": -1, "extrude": 0, "visibility": -1, "drawOrder": null, "icon": null }, "geometry": { "type": "Point", "coordinates": [ -8.4279714, 41.5313617] } }
]
}
A simples and valid version that draws a path in singapura just for using on tests, and that also doesnt renders
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [102.0, 0.5]
},
"properties": {
"prop0": "value0"
}
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]
]
},
"properties": {
"prop0": "value0",
"prop1": 0.0
}
},
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[100.0, 0.0], [101.0, 0.0], [101.0, 1.0],
[100.0, 1.0], [100.0, 0.0]
]
]
},
"properties": {
"prop0": "value0",
"prop1": { "this": "that" }
}
}
]
}
Thank you in advance.
@devmiegsi you need to add a Layer to your Source, right now you're not rendering anything.
Try this
<MapboxGL.ShapeSource id="payshop" shape={payshop}>
<MapboxGL.CircleLayer id="payshopCircles" style={{ circleRadius: 5 }} />
</MapboxGL.ShapeSource>
there are tons of examples here https://github.com/mapbox/react-native-mapbox-gl/tree/master/example/src/components
Most helpful comment
@devmiegsi you need to add a Layer to your Source, right now you're not rendering anything.
Try this
there are tons of examples here https://github.com/mapbox/react-native-mapbox-gl/tree/master/example/src/components