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
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(),
);
}
}