logo of Chat With Maps on the GPT Store

Chat With Maps on the GPT Store

Use Chat With Maps on ChatGPT Use Chat With Maps on 302.AI

GPT Description

Explore, navigate & discover Google Maps! Find nearby places, reviews, geocode addresses & more.

GPT Action OpenAPI Spec

{
  "openapi": "3.0.1",
  "info": {
    "title": "ChatWithMaps",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://api.gptcloud.dev/run/654d23dc80b7a5ccae50e700/65786cb0956caf0360799198"
    }
  ],
  "paths": {
    "/maps/nearby-search": {
      "post": {
        "summary": "By inputting current location, get a curated list of places within a specified area.",
        "description": "By inputting current location, get a curated list of places within a specified area.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NearbySearchRequestBody"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "namesOfPlaces": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "description": "Names of places."
                    },
                    "ResponseInstructions": {
                      "type": "string",
                      "description": "Instructions."
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request"
          }
        },
        "operationId": "NearbySearch"
      }
    },
    "/maps/text-search": {
      "post": {
        "summary": "Search for places based on a string.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TextSearchRequestBody"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Information about the place.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "namesOfPlaces": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "description": "Names of places."
                    },
                    "ResponseInstructions": {
                      "type": "string",
                      "description": "Instructions."
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "TextSearch"
      }
    },
    "/maps/find-place": {
      "post": {
        "summary": "Get information about the place.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceRequestBody"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Information about the place.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceInfoResponseBody"
                }
              }
            }
          }
        },
        "operationId": "FindPlace"
      }
    },
    "/maps/geocoding": {
      "post": {
        "summary": "Geocode the adress. Get latitude and longitude of the place.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GeocodeRequestBody"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Latitude and longitude of the place.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LatLngResponseBody"
                }
              }
            }
          }
        },
        "operationId": "Geocode"
      }
    },
    "/maps/reverse-geocoding": {
      "post": {
        "summary": "Reverse geocode latitude and longitude. Get address of the place.",
        "description": "Get address of the place.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LatLngRequestBody"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Information about the place.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AddressResponseBody"
                }
              }
            }
          }
        },
        "operationId": "ReverseGeocode"
      }
    },
    "/maps/build-route": {
      "post": {
        "summary": "Build a route from point A to point B.",
        "description": "Build a route from point A to point B.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RouteRequestBody"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Link to the route.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RouteResponse"
                }
              }
            }
          }
        },
        "operationId": "BuildRoute"
      }
    }
  },
  "components": {
    "schemas": {
      "NearbySearchRequestBody": {
        "type": "object",
        "properties": {
          "address": {
            "type": "string",
            "description": "Address for nearby search.",
            "required": true
          },
          "radius": {
            "type": "int",
            "description": "Radius in meters.",
            "required": true
          },
          "type": {
            "type": "string",
            "description": "The type which restricts the results to places matching the specified type.",
            "required": true
          }
        }
      },
      "TextSearchRequestBody": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string",
            "description": "The text string on which to search.",
            "required": true
          }
        }
      },
      "PlaceRequestBody": {
        "type": "object",
        "properties": {
          "place": {
            "type": "string",
            "description": "Place.",
            "required": true
          }
        }
      },
      "GeocodeRequestBody": {
        "type": "object",
        "properties": {
          "address": {
            "type": "string",
            "description": "Address of th place.",
            "required": true
          }
        }
      },
      "PlaceInfoResponseBody": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of place."
          },
          "aboutPlace": {
            "type": "string",
            "description": "Summary about place."
          },
          "formatted_address": {
            "type": "string",
            "description": "Formatted address of place."
          },
          "website": {
            "type": "string",
            "description": "Website of place."
          },
          "international_phone_number": {
            "type": "string",
            "description": "International phone number of place."
          },
          "rating": {
            "type": "string",
            "description": "Rating of place."
          },
          "schedule": {
            "type": "string",
            "description": "Schedule of place."
          },
          "reviewsSummary": {
            "type": "string",
            "description": "Reviews summary of place."
          },
          "responseInstructions": {
            "type": "string",
            "description": "Instructions.",
            "required": true
          }
        }
      },
      "LatLngResponseBody": {
        "type": "object",
        "properties": {
          "lat": {
            "type": "double",
            "description": "Latitude of place."
          },
          "lng": {
            "type": "double",
            "description": "Longitude of place."
          },
          "responseInstructions": {
            "type": "string",
            "description": "Instructions.",
            "required": true
          }
        }
      },
      "LatLngRequestBody": {
        "type": "object",
        "properties": {
          "lat": {
            "type": "string",
            "description": "Latitude of place."
          },
          "lng": {
            "type": "string",
            "description": "Longitude of place."
          }
        }
      },
      "AddressResponseBody": {
        "type": "object",
        "properties": {
          "formatted_address": {
            "type": "string",
            "description": "Address of place."
          },
          "responseInstructions": {
            "type": "string",
            "description": "Instructions.",
            "required": true
          }
        }
      },
      "RouteRequestBody": {
        "type": "object",
        "properties": {
          "beginningOfRoute": {
            "type": "string",
            "description": "The beginning of the route."
          },
          "endOfRoute": {
            "type": "string",
            "description": "The end of the route."
          }
        }
      },
      "RouteResponse": {
        "type": "object",
        "properties": {
          "routeLink": {
            "type": "string",
            "description": "Link to the route."
          },
          "responseInstructions": {
            "type": "string",
            "description": "Instructions.",
            "required": true
          }
        }
      }
    }
  }
}
Use Chat With Maps on 302.AI

Chat With Maps GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "Chat With Maps", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

More custom GPTs by copilot.us on the GPT Store

Batch Process

Upload & process files in batches. Supports CSV, TSV, Excel, Google Sheets. Ideal for data analysis & insight.

400+

Batch Process on the GPT Store

Aaron Code Review

Review GitHub code, summarize it & suggest improvements. Submit Git commit details or URL/link for insights.

Aaron Code Review on the GPT Store

Export Chat to PDF

Export your chat conversation to a PDF file, ready for download and share.

Export Chat to PDF on the GPT Store

Federal Resume

Write an ATS-optimized professional federal usajobs resume, for your targeted government job role.

Federal Resume on the GPT Store

Graduate Resume

Create you an ATS-friendly recent college/graduate resume, designed to land your first job.

Graduate Resume on the GPT Store

Job Description

Write you an effective job description that attracts top-quality talent for your next interview.

Job Description on the GPT Store

Job Interview

Prepare you for a job interview by asking questions and providing feedback.

Job Interview on the GPT Store

JoPilot

Advanced AI job search assistant that daily processes 1.5 million job postings from various career websites and job boards across the US, providing customizable job search filters for keywords, locations, employers, salaries, and commute time.

JoPilot on the GPT Store

Medical Resume

Create an ATS-optimized job winning professional medical assistant resume for your targeted healthcare position.

Medical Resume on the GPT Store

Recruiter. Interview

Help recruiters, employers, and business owners prepare for job interviews to enhance the hiring process.

Recruiter. Interview on the GPT Store

Job Offers Copilot

Create good-looking PDF job offers for business owners, HR and recruiters to enhance the hiring process.

Job Offers Copilot on the GPT Store

Video Summary

Create YouTube video summaries from transcripts and provide concise content overview with timestamps.

Video Summary on the GPT Store

Aaron Copywriter

Rewrite articles per your instructions. Send me web pages, PDFs, Word docs, Wikipedia, reviews, anything!

Aaron Copywriter on the GPT Store

Aaron Translator

Translate URLs or documents in any language. Support files and links.

Aaron Translator on the GPT Store

Business Contracts

Create professional, good-looking, and compliant business contracts. Download as PDF or Word.

Business Contracts on the GPT Store

Job Search in the US

Optimize your US job hunt. Search & explore by keywords, location, employer, salary and commute.

Job Search in the US on the GPT Store

Best Alternative GPTs to Chat With Maps on GPTs Store

Video Insights: Summaries/Transcription/Vision

Chat with any video or audio for insights, transcriptions in multiple languages, and visual analysis. Supports YouTube and file uploads

200K+

Chat with Code | Repo Assistant for Githu b

Provides both general and specific guidance on publicly accessible Github Repositories and their contents.

50K+

Docs GPT

Chat with your Google Docs, Sheets, Presentations, Drive PDFs, Notion, Sharepoint and much more!

50K+

Smart Connect — Notes

Chat with your Obsidian vault without copying data into the cloud.

25K+

Chat with GPT 4o ("Omni") Assistant

Informative and humorous GPT-4o Assistant.

25K+

Chat with GPT 4o ("Omni") Assistant

Try the new AI chat model: GPT 4o ("Omni") Assistant. It's faster and better than regular GPT. Plus it will incorporate speech-to-text, intelligence, and speech-to-text capabilities with extra low latency.

10K+

BibleGPT

Chat with the real Bible, listen to passages, analyze Bible data and generate Bible-inspired images! All Bible passages are retrieved live from the official ESV Bible database and eliminates Bible passage hallucinations. New!: Use the Canvas feature to shape your research or other long-form content.

10K+

Chat With A Dermatologist

Ask ANYTHING you would ask a dermatologist with five decades of experience! Tip: You can also interact with this assistant using general images and your own photos. Ready to chat?

10K+

Chat with Any Celebrity

Pick any Celebrity or Historical Figure and start chatting with them

5K+

Smart Connections for Obsidian

Chat with your notes.

5K+

CHAT with your document - Ask questions

Upload your document, and let's CHAT about it.

5K+

Catholic Saints, Speak to a Saint - Religion Talks

Chat with Catholic Saints & Blesseds. Explore Faith and Spirituality: Experience Religion, the people of God and Jesus Christ in Personal Conversation

5K+

Generation Z Interpreter

Chat with this agent to polish your ability to speak with gen z or just plain annoy your kids

1K+

YouTubeGPT

Chat with Youtube videos

1K+

chatTechnote

chat with www.sharetechnote.com. Reply comes from the contents of www.sharetechnote.com and the related link is provided at the end of the reply for you to get further details.

1K+

Fractal-GPT

Chat with your Fractal Amp Modeler

1K+

INTJ digital man

chat with INTJ

1K+

Conceptual Mapper

Conceptual Mapper is the only one capable of creating Concept Maps with the secret Studio Pyramid technique. Summarize with Infinity Books [https://chat.openai.com/g/g-mjePdibYR-infinity-books].

600+

JTBD Master Chat: Job Maps

Expert in JTBD, details job steps with rich explanations

400+

Chat With Maps

Explore, navigate & discover Google Maps! Find nearby places, reviews, geocode addresses & more.

20+