Mursyid

Results 7 comments of Mursyid

Hello @thenaim. This template app is really cool. I have some question about components, why you didnt make a component module instead?

@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

@marcjulian it's possible to stop/resume at any point?

@hemangsk just doing some workaround in Android, this one marker is using vector assets in drawable. ref [here](https://github.com/SnowBases/capacitor-googlemaps-native/commit/7b924f4bf4f91a2595da70058ebd1dc5b03b13fc#diff-4753aba32beeb2eba560f14ccf9acf18R197)

``` const scale = 2; var node = document.getElementById('area'); let obj = { height: window.innerHeight * scale, style: { transform: `scale(${scale}) translate(${window.innerWidth / 2 / scale}px, ${window.innerHeight / 2 /...