Created
February 15, 2017 20:17
-
-
Save imajes/b83d0183e4e658aae0ba5d2ac7d599cf to your computer and use it in GitHub Desktop.
This file contains 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
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