Anchoring Pushpins

One of the most common issues developers come across when using custom pushpins is that when they zoom the map it appears as if their pushpin is drifting to or from the location it is meant to be anchored to. This is due to an incorrect anchor value in the pushpin options. The anchor specifies which pixel coordinate of the image, relative to the top left corner of the image, should overlap the pushpins location coordinate.

For example, consider the following pushpin, which is 24 pixels wide and 26 pixels tall. For this pushpin we would want the bottom point of the pushpin to align with the pushpins location coordinate which in this case would need an x offset that is half the wide and a y offset equal to the height of the image. This would require an anchor point of (12, 36):

Diagram showing the vertical dimension of a pushpin icon is 36 px and the horizontal dimension is 12 px.

Here are some addition pushpin images and anchor values that can be used to properly position the pushpin.

Icon of a white and blue circle that is center-aligned.

Align with Center Anchor: (17, 17)

Icon of a red circular pin with a shadow.

Align with Point Anchor: (3, 30)

Icon of an orange pushpin with a shadow.

Align with Point Anchor: (3, 30)