Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $api_key = "AIzaSyCdunhIl23I5p-mPqB0Zkokgz6IxTXx3Rs";
- $location = "Nadiad";
- $url = "https://maps.googleapis.com/maps/api/staticmap?";
- $params = array(
- "center" => $location,
- "zoom" => "15",
- "size" => "600x400",
- "maptype" => "roadmap",
- "markers" => "color:red|" . $location,
- "key" => $api_key
- );
- $request_url = $url . http_build_query($params);
- echo "<img src='" . $request_url . "' />";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment