VB10 / fluttermapsadvance

Flutter Maps Manager
24 stars 6 forks source link

coordinate LatLng mistake (with fix) #3

Open Nightwelf opened 3 years ago

Nightwelf commented 3 years ago

Your code: LatLng get coordinate => LatLng(long, lat);

But LatLng constructor is: const LatLng(double latitude, double longitude)

Correct code is: LatLng get coordinate => LatLng(lat, long);

And in the end of your need change all your data to fix

VB10 commented 3 years ago

hello @Nightwelf thank u for comment, i'll fix soon

Nightwelf commented 3 years ago

hello @Nightwelf thank u for comment, i'll fix soon

Thank you! Your code is perfect! I love it!