Skip to content

Instantly share code, notes, and snippets.

@imajes
Created February 15, 2017 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imajes/b83d0183e4e658aae0ba5d2ac7d599cf to your computer and use it in GitHub Desktop.
Save imajes/b83d0183e4e658aae0ba5d2ac7d599cf to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
using System.Web;
public class GoogleMap : MonoBehaviour
{
IEnumerator _Refresh ()
{
var url = "http://maps.googleapis.com/maps/api/staticmap";
var qs = "";
qs += "center=" + HttpServerUtility.UrlEncode(centerLocation.address);
}
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment