aakash2310

Untitled

Feb 15th, 2023 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. $api_key = "AIzaSyCdunhIl23I5p-mPqB0Zkokgz6IxTXx3Rs";
  3. $location = "Nadiad";
  4. $url = "https://maps.googleapis.com/maps/api/staticmap?";
  5. $params = array(
  6. "center" => $location,
  7. "zoom" => "15",
  8. "size" => "600x400",
  9. "maptype" => "roadmap",
  10. "markers" => "color:red|" . $location,
  11. "key" => $api_key
  12. );
  13. $request_url = $url . http_build_query($params);
  14. echo "<img src='" . $request_url . "' />";
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment