power_geojson library

Classes

AnimationsOptions
AppPlatform
FeatureCollectionProperties<T extends Object>
Represents a set of properties for customizing the appearance of GeoJSON feature collections.
Flow
A class to represent Flow events.
MarkerCenterAnimation
MarkerClusterLayer
MarkerClusterLayerOptions
MarkerClusterLayerWidget
MarkerClusterNode
MarkerProperties
Represents properties for a marker on a map.
MarkerTapBehavior
Controls what happens when a Marker is tapped.
NativeRuntime
Functionality available on the native runtime.
PolygonOptions
PolygonProperties<T extends Object>
A class representing properties for rendering polygons on a map.
PolylineProperties<T extends Object>
PopupAnimation
PopupController
Used to programmatically show/hide popups and find out which markers have visible popups.
PopupDisplayOptions
Controls the appearance of popups.
PopupLayer
PopupLayer displays the visible popups in the context's PopupState. It is useful when you wish to display other widgets on top of markers but below their popups or for plugins which manage markers themselves and only need to display popups. This layer is a FlutterMap layer and therefore requires MapController to be present in the build context.
PopupMarkerLayer
PopupMarkerLayerOptions
PopupOptions
PopupScope
Looks for a PopupState in the current BuildContext or creates a new one. Events emitted by the provided PopupController are applied to the PopupState.
PopupSpec
Contains the data relevant for constructing a popup.
PopupState
PowerEsriJSON
PowerEsriJsonTransform
PowerEsriJsonTransformer
PowerGeoFeature
Represents a feature in GeoJSON data, which can include geometry and associated properties.
PowerGeoJSONClipper<T extends Object>
PowerGeoJSONFeatureCollection
Represents a collection of PowerGeoFeatures that can include points, linestrings, and polygons.
PowerGeoJSONFeatureCollections<T extends Object>
A utility class for fetching and displaying GeoJSON feature collections as widgets.
PowerGeoJSONMarkers
A utility class for fetching and rendering markers from various sources.
PowerGeoJSONPolygons
A utility class for loading and displaying polygons on a map from various sources.
PowerGeoJSONPolylines
PowerGeoLineString
Represents a line string geometry within a geographic feature.
PowerGeoPoint
Represents a point geometry within a geographic feature.
PowerGeoPolygon
Represents a polygon geometry within a geographic feature.
PowerJSON
PowerMarker
PowerMarkerClusterOptions
PowerPopupOptions
Service
Access information about the service protocol and control the web server that provides access to the services provided by the Dart VM for debugging and inspecting Dart programs.
ServiceExtensionResponse
A response to a service protocol extension RPC.
ServiceProtocolInfo
Service protocol is the protocol that a client like the Observatory could use to access the services provided by the Dart VM for debugging and inspecting Dart programs. This class encapsulates the version number and Uri for accessing this service.
Timeline
Add to the timeline.
TimelineTask
An asynchronous task on the timeline. An asynchronous task can have many (nested) synchronous operations. Synchronous operations can live longer than the current isolate event. To pass a TimelineTask to another isolate, you must first call pass to get the task id and then construct a new TimelineTask in the other isolate.
UserTag
A UserTag can be used to group samples in the DevTools CPU profiler.

Enums

LayerMarkerIndexes
An enumeration representing indexes for marker layer properties.
LayerPolygonIndexes
Enum defining indexes for polygon layer properties.
LayerPolylineIndexes
PopupSnap

Extensions

FlutterMapMarkerPopupAnchorAlignExtension on Alignment
HexColor on Color
LantLngX on List<List<double>>
An extension on lists of lists containing double values to provide a convenient method for converting them into a list of LatLng objects.
ListListLatLngX on List<List<List<double>>>
MarkerXX on List<double>
PointXList on List<double>
PolygonsXX on List<List<List<double>>>
PolylineXX on List<List<double>>
PolyX on Polygon<T>
StringX on String
XListPoint on LatLng

Properties

extensionStreamHasListener bool
Whether the "Extension" stream currently has at least one listener.
no setter
reachabilityBarrier int
Current reachability barrier state.
no setter

Functions

checkEsri(String readasstring) String
debugger({bool when = true, String? message}) bool
If when is true, stop the program as if a breakpoint were hit at the following statement.
defaultFileLoadBuilder(String path) Future<String>
A default file load builder that reads the contents of a file from the specified path.
getCurrentTag() UserTag
Returns the current UserTag for the isolate.
inspect(Object? object) Object?
Send a reference to object to any attached debuggers.
log(String message, {DateTime? time, int? sequenceNumber, int level = 0, String name = '', Zone? zone, Object? error, StackTrace? stackTrace}) → void
Emit a log event.
postEvent(String eventKind, Map eventData, {String stream = 'Extension'}) → void
Post an event of eventKind with payload of eventData to the "Extension" event stream.
registerExtension(String method, ServiceExtensionHandler handler) → void
Register a ServiceExtensionHandler that will be invoked in this isolate for method. NOTE: Service protocol extensions must be registered in each isolate.
strUint8List(Uint8List list) Future<String>
zoomTo(List<List<double>?> features, MapController? mapController) → void
Zooms the map view to fit the specified geographic features.

Typedefs

ClusterWidgetBuilder = Widget Function(BuildContext context, List<Marker> markers)
PopupMarkerLayerWidget = PopupMarkerLayer
PowerClusterWidgetBuilder = Widget Function(BuildContext context, List<PowerMarker> markers)
PowerPopupBuilder = Widget Function(BuildContext context, PowerMarker powerMarker)
ServiceExtensionHandler = Future<ServiceExtensionResponse> Function(String method, Map<String, String> parameters)
A service protocol extension handler. Registered with registerExtension.
TimelineAsyncFunction = Future Function()
TimelineSyncFunction<T> = T Function()
A typedef for the function argument to Timeline.timeSync.