flutter-mapbox-gl / maps

A Mapbox GL flutter package for creating custom maps
Other
1.03k stars 498 forks source link

Potential Issue with promoteId when formated as Object String #1380

Closed devkirch closed 8 months ago

devkirch commented 10 months ago

Hi,

when defining promoteId in VectorSourceProperties as a String Object like the description provides, FeatureId is always null.

 VectorSourceProperties(
          promoteId: '{"output":"Strasse","output":"PLZ",}',
          url: "****",
        ));

Source Layer name is output. If i define only one attribute like

VectorSourceProperties(
          promoteId: 'Strasse',
          url: "****",
        ));

it works as expected.

Any ideas? Cant seem to find anything here.

stale[bot] commented 8 months ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.