Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/flutter_map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import 'package:flutter_map/src/map/map.dart';
import 'package:flutter_map/src/plugins/plugin.dart';
import 'package:latlong/latlong.dart';

export 'src/core/bounds.dart';
export 'src/core/center_zoom.dart';
export 'src/core/point.dart';
export 'src/geo/crs/crs.dart';
Expand All @@ -25,6 +26,7 @@ export 'src/layer/polygon_layer.dart';
export 'src/layer/polyline_layer.dart';
export 'src/layer/tile_layer.dart';
export 'src/plugins/plugin.dart';
export 'src/core/center_zoom.dart';

class FlutterMap extends StatefulWidget {
/// A set of layers' options to used to create the layers on the map
Expand Down Expand Up @@ -71,7 +73,8 @@ abstract class MapController {

typedef void TapCallback(LatLng point);
typedef void LongPressCallback(LatLng point);
typedef void PositionCallback(MapPosition position, bool hasGesture, bool isUserGesture);
typedef void PositionCallback(
MapPosition position, bool hasGesture, bool isUserGesture);

class MapOptions {
final Crs crs;
Expand Down