diff --git a/ground_station/resources/core/mapping.py b/ground_station/resources/core/mapping.py index 5146d56..94a147e 100644 --- a/ground_station/resources/core/mapping.py +++ b/ground_station/resources/core/mapping.py @@ -52,4 +52,16 @@ _GRABRATE = 4 _pixrad = _EARTHPIX / math.pi -class Google \ No newline at end of file +class GMapsStitcher(object): + def __init__(self, width, height, latitude, + longitude, zoom, maptype, radius_meters=None, + num_tiles=4): + self.latitude = latitude + self.longitude = longitude + self.width = width + self.height = height + self.zoom = zoom + self.maptype = maptype + self.radius_meters = radius_meters + +