ntk_map_view 0.1.0
ntk_map_view: ^0.1.0 copied to clipboard
A crossplatform map view for flutter based on leaflet, that provide to create polyline, marker, have many of callbacks to work with map, very high perfomance
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add ntk_map_viewThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
ntk_map_view: ^0.1.0Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:ntk_map_view/interfaces/ntk_map_controller_interface.dart';
import 'package:ntk_map_view/interfaces/ntk_view_interface.dart';
import 'package:ntk_map_view/mobile/ntk_map_controller_mobile.dart';
import 'package:ntk_map_view/mobile/ntk_map_view_state_mobile.dart';
import 'package:ntk_map_view/models/map_button_class.dart';
import 'package:ntk_map_view/models/map_filter_class.dart';
import 'package:ntk_map_view/models/map_marker_content_model.dart';
import 'package:ntk_map_view/models/map_marker_icon_model.dart';
import 'package:ntk_map_view/modules/create_unique_uid.dart';
import 'package:ntk_map_view/ntk_web_view.dart';
import 'package:ntk_map_view/web/ntk_map_controller_web.dart';
import 'package:ntk_map_view/web/ntk_map_view_state_web.dart';