Skip to content

Instantly share code, notes, and snippets.

View ninjaasmoke's full-sized avatar
:octocat:

tintin ninjaasmoke

:octocat:
View GitHub Profile
@ninjaasmoke
ninjaasmoke / comapring_impls.dart
Created December 6, 2024 16:08
a comparison of different implementations for drawing markers on a map
class LatLng {
final double latitude;
final double longitude;
LatLng(this.latitude, this.longitude);
}
class LatLngBounds {
final LatLng southwest;
final LatLng northeast;