latLngToScreenOffsetUnrotated method
Implementation
Offset latLngToScreenOffsetUnrotated(LatLng latLng) {
final nonRotatedPixelOrigin =
projectAtZoom(center, zoom) - nonRotatedSize.center(Offset.zero);
final point = crs.latLngToOffset(latLng, zoom);
return point - nonRotatedPixelOrigin;
}