-
Notifications
You must be signed in to change notification settings - Fork 515
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add myLocationStyle #985
Closed
robert-go
wants to merge
1
commit into
flutter-mapbox-gl:master
from
robert-go:feat/my-location-style
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,8 @@ class MapboxMapController: NSObject, FlutterPlatformView, MGLMapViewDelegate, Ma | |
private var interactiveFeatureLayerIds = Set<String>() | ||
private var addedShapesByLayer = [String: MGLShape]() | ||
|
||
private var userLocationAnnotationViewStyle = MGLUserLocationAnnotationViewStyle() | ||
|
||
func view() -> UIView { | ||
return mapView | ||
} | ||
|
@@ -1285,6 +1287,12 @@ class MapboxMapController: NSObject, FlutterPlatformView, MGLMapViewDelegate, Ma | |
} | ||
} | ||
|
||
func mapView(styleForDefaultUserLocationAnnotationView _: MGLMapView) | ||
-> MGLUserLocationAnnotationViewStyle | ||
{ | ||
return userLocationAnnotationViewStyle | ||
} | ||
|
||
func addSourceGeojson(sourceId: String, geojson: String) { | ||
do { | ||
let parsed = try MGLShape( | ||
|
@@ -1430,6 +1438,16 @@ class MapboxMapController: NSObject, FlutterPlatformView, MGLMapViewDelegate, Ma | |
} | ||
} | ||
|
||
func setMyLocationStyle(style: [String: String]) { | ||
if let puckColor = UIColor(hexString: style["puckColor"] ?? "") { | ||
userLocationAnnotationViewStyle.puckFillColor = puckColor | ||
} | ||
if let pulsingColor = UIColor(hexString: style["pulsingColor"] ?? "") { | ||
userLocationAnnotationViewStyle.haloFillColor = pulsingColor | ||
} | ||
mapView.updateUserLocationAnnotationView() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @felix-ht can you take a look? |
||
} | ||
|
||
func setLogoViewMargins(x: Double, y: Double) { | ||
mapView.logoViewMargins = CGPoint(x: x, y: y) | ||
} | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@felix-ht can you take a look?
updateLocationComponentLayer()
cannot refresh new color after setState or hot reload