ntk_map_view 0.0.6
ntk_map_view: ^0.0.6 copied to clipboard
A crossplatform map view for flutter based on leaflet, that provide to create polyline, create marker, create custom marker, have many of callbacks to work with map, have a very high perfomance, and n [...]
example/main.dart
import 'package:flutter/material.dart';
import 'package:ntk_map_view/interfaces/ntk_view_interface.dart';
class MapPage extends StatelessWidget {
const MapPage({super.key});
@override
Widget build(BuildContext context) {
return Container(
height: 400,
width: 400,
child: NtkMapViewInterface(),
);
}
}