Open Snowbases opened 4 years ago
There is no such a feature
@wf9a5m75 Just workaround on this
polylineOptions.startCap(new RoundCap());
polylineOptions.endCap(new RoundCap());
polylineOptions.jointType(JointType.ROUND);
Ref:
https://developers.google.com/android/reference/com/google/android/gms/maps/model/RoundCap https://developers.google.com/android/reference/com/google/android/gms/maps/model/SquareCap https://developers.google.com/android/reference/com/google/android/gms/maps/model/ButtCap
Please send a pull request :)
By the way, please include the code for Android, iOS and browser
Any update on this feature?
This plugin just draws the specified data. You need to create such a draw path by yourself
I meant the startCap, endCap, and the jointType for the polyline options, since they don't seem to exist in this plugin yet. Or am I missing something here?
I mean this plugin provides only the features to draw on a map. You need to prepare the data your necessary by your self.
The markers start point and end point are also.
I'm submitting a ... (check one with "x")
OS: (check one with "x")
cordova information: (run
$> cordova plugin list
)If you use
@ionic-native/google-maps
, please tell the package.json (only@ionic-native/core
and@ionic-native/google-maps
are fine mostly)Current behavior:
Expected behavior:
Screen capture or video record:
Related code, data or error log (please format your code or data):
Support this plugin activity
I appreicate if you give me a beer :beer: from here
Explaination
The current issue is polyline doesn't have rounded edge,
in the attached code,, I have use a circle with a radius to cover the edge but its not follow the polyline size.
is there any method to get a rounded polyline edge?