Android Studio edit marker size #4912
Unanswered
Giovanninho00
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I have a problem relative to my Android Studio project.
Basically the app create thousend of marker on the google map, i want to use the default google marker but smaller, because that are too big.
I don't want use other marker like png or vector xml becouse that are too heavy to load
How i can resize it?
this is my code to create marker:
marker = mMap.addMarker(new MarkerOptions()
.title(line[NomePlINT])
.position(latLng)
.icon(Palo)
.zIndex(1.0f)
);
Beta Was this translation helpful? Give feedback.
All reactions