You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 25, 2019. It is now read-only.
There are two methods to get the image , but how to get an image with marker and zoom level?
Uri getStaticUri(Location center, int zoomLevel, {int width, int height}) {
return _buildUrl(null, center, zoomLevel ?? defaultZoomLevel,
width ?? defaultWidth, height ?? defaultHeight);
}
Uri getStaticUriWithMarkers(List markers, {int width, int height}) {
return _buildUrl(
markers, null, null, width ?? defaultWidth, height ?? defaultHeight);
}