Esempio n. 1
0
 // Return a bounds covering the entire (unwrapped) world.
 static LatLngBounds world() {
     return LatLngBounds({-90, -180}, {90, 180});
 }
Esempio n. 2
0
 // Return the bounds consisting of the single point.
 static LatLngBounds singleton(const LatLng& a) {
     return LatLngBounds(a, a);
 }
LatLngBounds PointAnnotationImpl::bounds() const {
    return LatLngBounds(point.position, point.position);
}