We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your enhancement related to a problem? Please describe.
MapKit support custom glyph image for marker annotation, our block should support that feature as well.
Original wp.org report: https://wordpress.org/support/topic/how-change-marker-icon/
The text was updated successfully, but these errors were encountered:
For context this is the documentation from Apple about the custom glyph support: https://developer.apple.com/documentation/mapkitjs/mapkit/markerannotation
const portland = new mapkit.Coordinate(45.5231, -122.6765); const customMarker = new MarkerAnnotation(portland, { color: "green", glyphColor: "brown", glyphImage: { 1: "glyphImage.png" }, selectedGlyphImage: { 1: "detailedIcon.png", 2: "detailedIcon_2x.png", 3: "detailedIcon_3x.png" } });
And this is where we define the markers in the AppleMap class:
AppleMap
https://github.com/10up/maps-block-apple/blob/develop/src/components/AppleMap.js#L108-L118
Sorry, something went wrong.
iamdharmesh
Successfully merging a pull request may close this issue.
Is your enhancement related to a problem? Please describe.
MapKit support custom glyph image for marker annotation, our block should support that feature as well.
Original wp.org report: https://wordpress.org/support/topic/how-change-marker-icon/
The text was updated successfully, but these errors were encountered: