Skip to content

Commit

Permalink
Merge pull request #43 from phntmxyz/bump-latlong-package
Browse files Browse the repository at this point in the history
Bump `latlong2` package version
  • Loading branch information
MatthaiosSait authored Nov 13, 2023
2 parents f81d485 + b0bb793 commit 3cdc7e8
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions arcgis_map/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ class ExampleMap extends StatefulWidget {

class _ExampleMapState extends State<ExampleMap> {
static const String _pinId1 = '123';
final LatLng _firstPinCoordinates = LatLng(52.9, 13.2);
final LatLng _firstPinCoordinates = const LatLng(52.9, 13.2);
static const String _pinId2 = '456';
final LatLng _secondPinCoordinates = LatLng(51, 11);
final LatLng _secondPinCoordinates = const LatLng(51, 11);
static const String _pinLayerId = 'PinLayer';
static const String _polygon1 = 'polygon1';
static const String _polygon2 = 'polygon2';
Expand All @@ -67,8 +67,8 @@ class _ExampleMapState extends State<ExampleMap> {

bool show3dMap = false;
bool _baseMapToggled = false;
final initialCenter = LatLng(51.16, 10.45);
final tappedHQ = LatLng(48.1234963, 11.5910182);
final initialCenter = const LatLng(51.16, 10.45);
final tappedHQ = const LatLng(48.1234963, 11.5910182);
var _isInteractionEnabled = true;

@override
Expand Down
2 changes: 1 addition & 1 deletion arcgis_map/example/lib/vector_layer_example_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class _VectorLayerExamplePageState extends State<VectorLayerExamplePage> {
children: [
ArcgisMap(
apiKey: arcGisApiKey,
initialCenter: LatLng(51.16, 10.45),
initialCenter: const LatLng(51.16, 10.45),
zoom: 13,
vectorTileLayerUrls: const [
"https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer",
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ packages:
dependency: transitive
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lint:
dependency: "direct dev"
description:
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ packages:
dependency: transitive
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lints:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map_android/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ packages:
dependency: transitive
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lints:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map_ios/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ packages:
dependency: transitive
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lints:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map_method_channel/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ packages:
dependency: transitive
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lints:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map_platform_interface/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ packages:
dependency: "direct main"
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lints:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion arcgis_map_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
flutter:
sdk: flutter

latlong2: ^0.8.1
latlong2: ^0.9.0
plugin_platform_interface: ^2.1.3

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions arcgis_map_web/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ packages:
dependency: transitive
description:
name: latlong2
sha256: "408993a0e3f46e79ce1f129e4cb0386eef6d48dfa6394939ecacfbd7049154ec"
sha256: "18712164760cee655bc790122b0fd8f3d5b3c36da2cb7bf94b68a197fbb0811b"
url: "https://pub.dev"
source: hosted
version: "0.8.1"
version: "0.9.0"
lint:
dependency: "direct dev"
description:
Expand Down

0 comments on commit 3cdc7e8

Please sign in to comment.