-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
151 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:location/location.dart'; | ||
import 'package:mapbox_gl_example/main.dart'; | ||
import 'package:mapbox_gl_example/page.dart'; | ||
import 'package:mapbox_gl/mapbox_gl.dart'; | ||
|
||
class CustomMyLocationStyle extends ExamplePage { | ||
const CustomMyLocationStyle({Key? key}) | ||
: super(const Icon(Icons.my_location), "Custom my location style"); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return CustomMyLocationStyleBody(); | ||
} | ||
} | ||
|
||
class CustomMyLocationStyleBody extends StatefulWidget { | ||
const CustomMyLocationStyleBody({Key? key}) : super(key: key); | ||
|
||
@override | ||
State<CustomMyLocationStyleBody> createState() => | ||
_CustomMyLocationStyleBodyState(); | ||
} | ||
|
||
class _CustomMyLocationStyleBodyState extends State<CustomMyLocationStyleBody> { | ||
var _myLocationStyle = MyLocationStyle(); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
body: MapboxMap( | ||
initialCameraPosition: CameraPosition(target: LatLng(0, 0)), | ||
accessToken: MapsDemo.ACCESS_TOKEN, | ||
myLocationEnabled: true, | ||
myLocationStyle: _myLocationStyle, | ||
onMapCreated: (ctr) async { | ||
final location = await Location().getLocation(); | ||
await ctr.animateCamera(CameraUpdate.newLatLngZoom( | ||
LatLng(location.latitude ?? 0, location.longitude ?? 0), 14)); | ||
}, | ||
), | ||
floatingActionButton: FloatingActionButton( | ||
child: Icon(Icons.swap_horiz), | ||
onPressed: () { | ||
setState(() { | ||
_myLocationStyle = MyLocationStyle( | ||
puckColor: Colors.yellow, | ||
pulsingColor: Colors.green, | ||
); | ||
}); | ||
}, | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/src/color_tools.dart → ...atform_interface/lib/src/color_tools.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
mapbox_gl_platform_interface/lib/src/my_location_style.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
part of mapbox_gl_platform_interface; | ||
|
||
class MyLocationStyle { | ||
final Color? puckColor; | ||
final Color? pulsingColor; | ||
|
||
const MyLocationStyle({this.puckColor, this.pulsingColor}); | ||
|
||
dynamic toJson() => { | ||
"puckColor": puckColor?.toHexStringRGB(), | ||
"pulsingColor": pulsingColor?.toHexStringRGB(), | ||
}..removeWhere((key, value) => value == null); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters