🐯
Copy of FATOS Developer
Developer SiteConsole
  • Maps
    • Map control
      • Sources
      • Bounds
      • Zoom
      • Center
      • Rotate (Heading)
      • Tilt
      • Flyto
      • Solid (Buildings)
      • Language
      • Theme
      • Event Once
      • Event On/Off
    • Layer Control
    • Map UI
    • Map Utilities
      • Rectangle
      • Circle
      • Polyline
      • Polygon
      • Area
      • Distance
      • Mark
  • Search
    • Name
    • Category
    • Address
    • Geocoding
  • Route
    • Passenger Car
    • Motorbike
    • Truck
    • Public Transportation
    • Bicycle
    • Pedestrian
  • TMS
    • Route with multiple waypoints
    • Route as optimize order of waypoints
    • Route as optimize order of logistics
    • Route as optimize order of delivery
    • Route to predict which is after some time
  • FMS
    • Realtime tracking
    • Driving trajectory analysis
    • Driving road pattern analysis
    • Driver behavior analysis
    • Road snap
    • Geofencing
  • Navigation SDK
    • For Fire Engine
    • For Mobility on Demand
    • For City GAS
  • Get your API Key
  • Troubleshooting
    • FAQ
Powered by GitBook
On this page
  • POI Search by category
  • How to get categories?
  • Get category list
  1. Search

Category

PreviousNameNextAddress

Last updated 2 years ago

The search by category function is to search for POIs that correspond to any category around some location, and you can search for various POIs nearby some location, such as restaurants, cafes, and gas stations, etc,.

POI Search by category

GET https://api.fatos.biz/search/v1/total

Optional parameters are same as the default POI Search.

Example: https://api.fatos.biz/search/v1/total?key={YOURAPIKEY}&stype=3kwd= {CATE_CODE}&cy=37.48527&cx=126.90164

Query Parameters

Name
Type
Description

key

string

YOUR_API_KEY

stype

integer

3(to search category (nearby))

kwd

string

cate_code/cate_name (obtainable from category list)

cx

number

User's current location X coordinate (wgs84) (Longitude)

cy

number

User's current location Y coordinate (wgs84) (Lotitude)

[
    {
        "cate_code": "0",
        "cate_name": "기타"
    },
    {
        "cate_code": "1",
        "cate_name": "주유소"
    },
    {
        "cate_code": "10",
        "cate_name": "교통"
    },
    {
        "cate_code": "11",
        "cate_name": "쇼핑"
    },
    {
        "cate_code": "12",
        "cate_name": "숙박"
    },
    {
        "cate_code": "13",
        "cate_name": "관광/레저/문화"
    },
    {
        "cate_code": "2",
        "cate_name": "가스충전소"
    },
    {
        "cate_code": "3",
        "cate_name": "EV충전소"
    },
    {
        "cate_code": "4",
        "cate_name": "음식점"
    },
    {
        "cate_code": "5",
        "cate_name": "마트/편의점"
    },
    {
        "cate_code": "6",
        "cate_name": "주차장"
    },
    {
        "cate_code": "7",
        "cate_name": "정비소"
    },
    {
        "cate_code": "8",
        "cate_name": "은행/ATM"
    },
    {
        "cate_code": "9",
        "cate_name": "병원/약국"
    }
]

How to get categories?

We provide various kinds of categories, and we also provide APIs to get them.

Get category list

GET https://api.fatos.biz/search/v1/cates

https://api.fatos.biz/search/v1/cates?key={YOUR_API_KEY}&lang=ko

Query Parameters

Name
Type
Description

key

string

YOUR_API_KEY

lang

string

lang_code (check Hint box right below)

[
    {
        "cate_code": "0",
        "cate_name": "기타"
    },
    {
        "cate_code": "1",
        "cate_name": "주유소"
    },
    {
        "cate_code": "10",
        "cate_name": "교통"
    },
    {
        "cate_code": "11",
        "cate_name": "쇼핑"
    },
    {
        "cate_code": "12",
        "cate_name": "숙박"
    },
    {
        "cate_code": "13",
        "cate_name": "관광/레저/문화"
    },
    {
        "cate_code": "2",
        "cate_name": "가스충전소"
    },
    {
        "cate_code": "3",
        "cate_name": "EV충전소"
    },
    {
        "cate_code": "4",
        "cate_name": "음식점"
    },
    {
        "cate_code": "5",
        "cate_name": "마트/편의점"
    },
    {
        "cate_code": "6",
        "cate_name": "주차장"
    },
    {
        "cate_code": "7",
        "cate_name": "정비소"
    },
    {
        "cate_code": "8",
        "cate_name": "은행/ATM"
    },
    {
        "cate_code": "9",
        "cate_name": "병원/약국"
    }
]
Drawing