lat_lon_grid_plugin 0.1.0
lat_lon_grid_plugin: ^0.1.0 copied to clipboard
Adds a latitude / longitude grid as plugin to the [flutter_map](https://github.com/johnpryan/flutter_map/).
lat_lon_grid_plugin #
Adds a latitude / longitude grid as plugin to the flutter_map.
Getting Started #
Example application under /example/:
[Example]
Usage #
dependencies:
flutter_map: any
lat_lon_grid_plugin: any
Include the FlutterMap into your widget tree.
Please note: Make sure to place the MapPluginLatLonGridOptions() right after TileLayerOptions so it does not consume touch events from other layer widgets.
FlutterMap(
mapController: _mapController,
options: MapOptions(
center: LatLng(37.7, 13.5),
zoom: 7.0,
plugins: [
MapPluginLatLonGrid(),
],
),
layers: [
TileLayerOptions(
urlTemplate:
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
subdomains: ['a', 'b', 'c'],
),
MapPluginLatLonGridOptions(
lineColor: Colors.black,
textColor: Colors.white,
textBackgroundColor: Colors.black,
rotateLonLabels: false,
showCardinalDirections: true,
// plus other parameters ...
),
],
),