Created
September 8, 2016 16:05
-
-
Save malles/8cd188c297da992dbdf899cae601c5a2 to your computer and use it in GitHub Desktop.
Draw simple polygon on Google Maps for Hangupsbot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio, aiohttp, io, logging, time | |
import urllib | |
import plugins | |
logger = logging.getLogger(__name__) | |
# somethin new | |
# somethin new | |
class StaticMapsApi: | |
def __init__(self): | |
self.api_url = "https://maps.googleapis.com/maps/api/staticmap" | |
self.params = { | |
"key": "", | |
"size": "800x800", | |
"scale": "2", | |
"maptype ": "roadmap", | |
"markers": "", | |
"path ": "" | |
} | |
def initialise(self, bot): | |
self.params["key"] = bot.config.get_by_path(['draw.api_key']) | |
if not self.params["key"]: | |
logger.error("No API key provided for draw plugin. Use /bot config set draw.api_key \"<key>\" to set it.") | |
@asyncio.coroutine | |
def get_map(self, bot, event, points): | |
logger.info("Fetching points {}".format(points)) | |
self.params["markers"] = points | |
self.params["path"] = points | |
image_link = "{}?{}".format(self.api_url, urllib.parse.urlencode(self.params)) | |
logger.info("getting map {}".format(image_link)) | |
filename = event.conv_id + ".map." + str(time.time()) + ".png" | |
logger.debug("temporary image file: {}".format(filename)) | |
r = yield from aiohttp.request('get', image_link) | |
raw = yield from r.read() | |
image_data = io.BytesIO(raw) | |
image_id = yield from bot._client.upload_image(image_data, filename=filename) | |
yield from bot.coro_send_message(event.conv.id_, None, image_id=image_id) | |
_maps = StaticMapsApi() | |
def _initialise(bot): | |
plugins.register_user_command(["draw"]) | |
_maps.initialise(bot) | |
def draw(bot, event, *args): | |
"""Draw line between points""" | |
if not _maps.params["key"]: | |
return | |
points = "|".join(args) | |
if not points: | |
yield from bot.coro_send_message(event.conv, "Nothing to draw. Enter some placenames or coordinates to draw map.") | |
else: | |
yield from _maps.get_map(bot, event, points) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment