lat_lon_grid_plugin 0.0.1 copy "lat_lon_grid_plugin: ^0.0.1" to clipboard
lat_lon_grid_plugin: ^0.0.1 copied to clipboard

outdated

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 ...
          ),
    ],
  ),
12
likes
0
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Adds a latitude / longitude grid as plugin to the [flutter_map](https://github.com/johnpryan/flutter_map/).

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_map, latlong

More

Packages that depend on lat_lon_grid_plugin