1.0.18 • Published 3 years ago

mypackagelitnn v1.0.18

Weekly downloads
40
License
ISC
Repository
github
Last release
3 years ago

React-Native HMS site

Contents

  1. Introduction
  2. Installation Guide
  3. API Reference
  4. Object Description
  5. Sample Project
  6. Questions or Issues
  7. Configuration and Description
  8. Licensing and Terms

1. Introduction

This module enables communication between Huawei Site SDK and React Native platform. It exposes all functionality provided by Huawei Site SDK.

2. Installation Guide

  • Download the module and copy it into node_modules/@hmscore folder. The folder structure can be seen below;
project-name
    |_ node_modules
        |_ ...
        |_ @hmscore
            |_react-native-hms-site
            |_ ...
        |_ ...
  • Visit Huawei developers website and login to the Huawei developer console, if you don't have a developer account, register for one.

  • Go to AppGallery Connect > My Apps > New App. Create your application.

appgallery_connect my_apps new_app

  • Go to My projects as shown.

my_projects

  • Enter a package name for your application.

package_name

  • Navigate to the General Information tab. Set the data storage location and download agconnect-services.json file and put it under android/app folder of your application.

my_project

  • Click on the Manage APIs tab, you will see the list of the enabled and disabled Huawei APIs for your application. Make sure the site kit API is enabled.

api_enabled

  • Generate a keystore file and put it in android/app folder. To generate a keystore file follow the instructions in codelabs. Place the generated keystore file in android/app.

  • Run the cmd command to open the command line tool and run the cd command to go to the directory where keytool.exe is located, which is the bin directory of the JDK. In the following example, the Java program is installed in Program Files in the C drive.

C:\>cd C:\Program Files\Java\jdk1.8.0_241\bin
C:\Program Files\Java\jdk1.8.0_241\bin>
  • Run the command:
keytool -list -v -keystore <keystore-file>

In the preceding command, \<keystore-file> is the complete path to the app's signature file. For example, if the keystore file directory is under the path D: project-dir\android\app\mykeystore.jks, the command you would type would be:

keytool -list -v -keystore project.dir\android\app\keystore.jks
  • Enter your keystore password as prompted and obtain SHA256 fingerprint from the result. An example of the result is as follows:

keystore_sha256

  • Visit your developer console, and select your project from My projects. Navigate to the General Information tab. Copy and paste the SHA256 key you obtained in the preceeding step.

certificate_fingerprint

  • Add following lines into android/settings.gradle file
include ':react-native-hms-site'
project(':react-native-hms-site').projectDir = new File(rootProject.projectDir, '../node_modules/@hmscore/react-native-hms-site/android')
  • Add maven repository address to the buildscript>repositories and allprojects>repositories in android/build.gradle file.
buildscript {
       repositories {
           ...
           maven {url 'https://developer.huawei.com/repo/'}
       }
}  
allprojects {
       repositories {
           ...
           maven {url 'https://developer.huawei.com/repo/'}
       }
}
  • Add the agconnect dependency to buildscript > dependencies in android/build.gradle file.
buildscript {
    ...
    dependencies {
        classpath 'com.huawei.agconnect:agcp:1.4.1.300'
    }
    ...
}
  • Add AppGallery Connect plugin and react-native-hms-site dependency into android/app/build.gradle file.
apply plugin: 'com.huawei.agconnect'
...
dependencies{
    implementation project(":react-native-hms-site")
}
...
  • In the android/app/build.gradle file, Set the value of the field applicationId to the value of the field package_name in the agconnect-services.json file.
android {
    ...
    defaultConfig {
        applicationId "<package_name>"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
    }
    ...
}
  • Put keystore file under android/app folder. Add signing configuration into android/app/build.gradle file.
signingConfigs {
        release {
            storeFile file('<keystore>')
            storePassword '<storePassword>'
            keyAlias '<keyAlias>'
            keyPassword '<keyPassword>'
        }

        debug {
            storeFile file('<keystore>')
            storePassword '<storePassword>'
            keyAlias '<keyAlias>'
            keyPassword '<keyPassword>'
        }
    }
    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }
        release {
            signingConfig signingConfigs.release
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    ...
  • Add RNHMSSitePackage to your application.
import com.huawei.hms.rn.site.RNHMSSitePackage;
...
@Override
protected List<ReactPackage> getPackages() {
  @SuppressWarnings("UnnecessaryLocalVariable")
  List<ReactPackage> packages = new PackageList(this).getPackages();
  packages.add(new RNHMSSitePackage());
  return packages;
}
...

3. API Reference

RNHMSSite

Public Method Summary

MethodReturn TypeDescription
initializeService(config)Promise\Initializes other methods to be used.
textSearch(textSearchRequest)Promise\<TextSearchResponse | SearchStatus>Searches for places such as tourist attractions, enterprises, and schools by a TextSearchResponse object.
querySuggestion(querySuggestionRequest)Promise\<QuerySuggestionResponse | SearchStatus>Searches for place details based the unique ID (SiteId) of a place by a QuerySuggestionResponse object.
nearbySearch(nearbySearchRequest)Promise\<NearbySearchResponse | SearchStatus>Based on the user's current location, searches for nearby places by a NearbySearchRequest object.
detailSearch(detailSearchRequest)Promise\<DetailSearchResponse | SearchStatus>Searches for place details based the unique ID (SiteId) of a place by a DetailSearchRequest object.
createSearchWidget(searchWidgetConfig)Promise\<Site>Creates a search widget by a SearchWidgetConfig, when the user enters a keyword in the search box, the widget displays a list of suggested places to the user.
RNHMSSite.enableLogger()Promise\This method enables HMSLogger capability which is used for sending usage analytics of Site SDK's methods to improve the service quality.
RNHMSSite.disableLogger()Promise\This method disables HMSLogger capability which is used for sending usage analytics of Site SDK's methods to improve the service quality.

Public Methods

RNHMSSite.initializeService(config)

Initializes other methods to be used. It returns a Promise object indicating whether the initialization is successful or not.

Parameters
NameDescription
configConfig object contains the API key to be used for initializing the services.
Return Type
TypeDescription
Promise\The method resolves or rejects a null promise depending on the success or failure of the service initialization.
Call Example
const config = {
  apiKey: '<api_key>',
};

RNHMSSite.initializeService(config)
  .then(() => {
    console.log('Service is initialized successfully');
  })
  .catch((err) => {
    console.log('Error : ' + err);
  });
RNHMSSite.textSearch(textSearchRequest)

Searches for places such as tourist attractions, enterprises, and schools based on a TextSearchRequest object. This method takes a TextSearchRequest object as a parameter and returns a Promise object. The Promise object contains a TextSearchResponse object if the search is successful, and a SearchStatus object otherwise.

Parameters
NameDescription
textSearchRequestTextSearchRequest object contains the data to be used to perform a text search.
Return Type
TypeDescription
Promise\<TextSearchResponse | SearchStatus>If the search is successful, the method resolves a TextSearchResponse object as the search result. It rejects a SearchStatus object if the search is failed.
Call Example
  let textSearchReq = {
    query: "Paris",
    location: {
      lat: 48.893478,
      lng: 2.334595,
    },
    radius: 1000,
    countryCode: 'FR',
    language: 'fr',
    pageIndex: 1,
    pageSize: 5,
    hwPoiType: RNHMSSite.HwLocationType.RESTAURANT,
    poiType: RNHMSSite.LocationType.GYM,
    politicalView: "FR"
  };
  RNHMSSite.textSearch(textSearchReq)
    .then((res) => {
      alert(JSON.stringify(res));
      console.log(JSON.stringify(res));
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
RNHMSSite.detailSearch(detailSearchRequest)

Searches for place details based the unique ID (SiteId) of a place. This method takes a DetailSearchRequest object as a parameter and returns a Promise object. The Promise object contains a DetailSearchResponse object if the search is successful, or a SearchStatus object otherwise.

Parameters
NameDescription
detailSearchRequestDetailSearchRequest object contains the data to be used to perform a detail search.
Return Type
TypeDescription
Promise\<DetailSearchResponse | SearchStatus>If successful the method resolves a Promise object encapsulating the DetailSearchResponse object as the search result. The method rejects a SearchStatus object if the search is failed.
Call Example
  let detailSearchReq = {
    siteId: '16DA89C6962A36CB1752A343ED48B78A',
    language: 'fr',
    politicalView: 'fr'
  };
  RNHMSSite.detailSearch(detailSearchReq)
    .then((res) => {
      alert(JSON.stringify(res));
      console.log(JSON.stringify(res));
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
RNHMSSite.querySuggestion(querySuggestionRequest)

Returns suggested places during user input. This method takes a QuerySuggestionRequest object as a parameter and returns a Promise object. The Promise object contains a QuerySuggestionResponse object if the search is successful, and a SearchStatus object otherwise.

Parameters
NameDescription
querySuggestionRequestQuerySuggestionRequest object contains the data to be used to get query search suggestions.
Return Type
TypeDescription
Promise\<QuerySearchResponse | SearchStatus>If successful the method resolves a Promise object encapsulating the QuerySearchResponse object as the search result. The method rejects a SearchStatus object if the search is failed.
Call Example
  let querySuggestionReq = {
    query: 'Paris',
    location: {
      lat: 48.893478,
      lng: 2.334595,
    },
    radius: 1000,
    countryCode: 'FR',
    language: 'fr',
    poiTypes: [RNHMSSite.LocationType.ADDRESS, RNHMSSite.LocationType.GEOCODE],
  };
  RNHMSSite.querySuggestion(querySuggestionReq)
    .then((res) => {
      alert(JSON.stringify(res));
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
RNHMSSite.nearbySearch(nearbySearchRequest)

Searches for nearby places based on the user's current location. This method takes a NearbySearchRequest object as a parameter and returns a Promise object. The Promise object contains a NearbySearchResponse object if the search is successful, and a SearchStatus object otherwise.

Parameters
NameDescription
nearbySearchRequestNearbySearchRequest object contains the data to be used to perform a nearby search.
Return Type
TypeDescription
Promise\<NearbySearchResponse | SearchStatus>If successful the method resolves a Promise object encapsulating the NearbySearchResponse object as the search result. The method rejects a SearchStatus object if the search is failed.
Call Example
  let nearbySearchReq = {
    query: 'Paris',
    location:
    {
      lat: 48.893478,
      lng: 2.334595,
    },
    radius: 1000,
    poiType: RNHMSSite.LocationType.ADDRESS,
    countryCode: 'FR',
    language: 'fr',
    pageIndex: 1,
    pageSize: 5,
    hwPoiType: RNHMSSite.HwLocationType.RESTAURANT,
    politicalView: "fr"
  };
  RNHMSSite.nearbySearch(nearbySearchReq)
    .then((res) => {
      alert(JSON.stringify(res));
      console.log(JSON.stringify(res));
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
RNHMSSite.createSearchWidget(searchWidgetConfig)

Creates a search widget, when a user enters a keyword in the search box, the widget displays a list of suggested places to the user. If the user clicks a place in the list, the app it will return a Site object

Parameters
NameDescription
searchWidgetConfigSearchWidgetConfig object contains the necessary fields to create a search widget.
Return Type
TypeDescription
Promise\<Site | SearchStatus>If successful the method resolves a Promise object encapsulating the Site object as the search result. The method rejects a SearchStatus object if the search is failed.
Call Example
  let params = {
    searchIntent: {
      apiKey: '<api_key>',
      hint: 'myhint',
    },

    searchFilter: {
      query: 'Leeds',
      language: 'en',
    },
  };

  RNHMSSite.createWidget(params)
    .then((res) => {
      alert(JSON.stringify(res));
      console.log(JSON.stringify(res));
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
RNHMSSite.enableLogger()

This method enables HMSLogger capability which is used for sending usage analytics of Site SDK's methods to improve the service quality.

Parameters

None

Return Type
TypeDescription
Promise\The method resolves or rejects a null promise depending on the success or failure of the enabling logger
Call Example
  RNHMSSite.enableLogger()
    .then((res) => {
      alert(JSON.stringify(res));
      console.log(res);
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
RNHMSSite.disableLogger()

This method disables HMSLogger capability which is used for sending usage analytics of Site SDK's methods to improve the service quality.

Parameters

None

Return Type
TypeDescription
Promise\The method resolves or rejects a null promise depending on the success or failure of the disabling logger
Call Example
  RNHMSSite.disableLogger()
    .then((res) => {
      alert(JSON.stringify(res));
      console.log(res);
    })
    .catch((err) => {
      alert(JSON.stringify(err));
      console.log(JSON.stringify(err));
    });
LocationType

Enumerated place types

Constant NameDescription
RNHMSSite.LocationType.ACCOUNTINGAccounting firm.
RNHMSSite.LocationType.ADDRESSAddress.
RNHMSSite.LocationType.ADMINISTRATIVE_AREA_LEVEL_1Level-1 administrative region.
RNHMSSite.LocationType.ADMINISTRATIVE_AREA_LEVEL_2Level-2 administrative region.
RNHMSSite.LocationType.ADMINISTRATIVE_AREA_LEVEL_3Level-3 administrative region.
RNHMSSite.LocationType.ADMINISTRATIVE_AREA_LEVEL_4Level-4 administrative region.
RNHMSSite.LocationType.ADMINISTRATIVE_AREA_LEVEL_5Level-5 administrative region.
RNHMSSite.LocationType.AIRPORTAirport.
RNHMSSite.LocationType.AMUSEMENT_PARKAmusement park.
RNHMSSite.LocationType.AQUARIUMAquarium.
RNHMSSite.LocationType.ARCHIPELAGOArchipelago.
RNHMSSite.LocationType.ART_GALLERYArt gallery.
RNHMSSite.LocationType.ATMAutomatic teller machine (ATM).
RNHMSSite.LocationType.BAKERYBakery.
RNHMSSite.LocationType.BANKBank.
RNHMSSite.LocationType.BARBar.
RNHMSSite.LocationType.BEAUTY_SALONBeauty salon.
RNHMSSite.LocationType.BICYCLE_STOREBicycle store.
RNHMSSite.LocationType.BOOK_STOREBookstore.
RNHMSSite.LocationType.BOWLING_ALLEYBowling alley.
RNHMSSite.LocationType.BUS_STATIONBus station.
RNHMSSite.LocationType.CAFECafe.
RNHMSSite.LocationType.CAMPGROUNDCampsite.
RNHMSSite.LocationType.CAPITALCapital.
RNHMSSite.LocationType.CAPITAL_CITYCapital city.
RNHMSSite.LocationType.CAR_DEALERAutomobile dealer.
RNHMSSite.LocationType.CAR_RENTALCar rental company.
RNHMSSite.LocationType.CAR_REPAIRVehicle repair plant.
RNHMSSite.LocationType.CAR_WASHCar wash facility.
RNHMSSite.LocationType.CASINOCasino.
RNHMSSite.LocationType.CEMETERYCemetery.
RNHMSSite.LocationType.CHURCHChurch.
RNHMSSite.LocationType.CITIESCities.
RNHMSSite.LocationType.CITY_HALLCity hall.
RNHMSSite.LocationType.CLOTHING_STOREClothing store.
RNHMSSite.LocationType.COLLOQUIAL_AREAColloquial area.
RNHMSSite.LocationType.CONVENIENCE_STOREContinent.
RNHMSSite.LocationType.CONTINENTConvenience store.
RNHMSSite.LocationType.COUNTRYCountry.
RNHMSSite.LocationType.COURTHOUSECourt.
RNHMSSite.LocationType.DENTISTDentist.
RNHMSSite.LocationType.DEPARTMENT_STOREDepartment store.
RNHMSSite.LocationType.DOCTORDoctor.
RNHMSSite.LocationType.DRUGSTOREDrugstore.
RNHMSSite.LocationType.ELECTRICIANElectrician.
RNHMSSite.LocationType.ELECTRONICS_STOREE-commerce store.
RNHMSSite.LocationType.EMBASSYEmbassy.
RNHMSSite.LocationType.ESTABLISHMENTEstablishment.
RNHMSSite.LocationType.FINANCEFinancial institution.
RNHMSSite.LocationType.FIRE_STATIONFire station.
RNHMSSite.LocationType.FLOORFloor.
RNHMSSite.LocationType.FLORISTFlorist.
RNHMSSite.LocationType.FOODFood.
RNHMSSite.LocationType.FUNERAL_HOMEFuneral home.
RNHMSSite.LocationType.FURNITURE_STOREFurniture store.
RNHMSSite.LocationType.GAS_STATIONGas station.
RNHMSSite.LocationType.GENERAL_CITYCity.
RNHMSSite.LocationType.GENERAL_CONTRACTORGeneral contractor.
RNHMSSite.LocationType.GEOCODEGeocode.
RNHMSSite.LocationType.GROCERY_OR_SUPERMARKETGrocery or supermarket.
RNHMSSite.LocationType.GYMGym.
RNHMSSite.LocationType.HAMLETHair care.
RNHMSSite.LocationType.HAIR_CAREHamlet.
RNHMSSite.LocationType.HARDWARE_STOREHardware store.
RNHMSSite.LocationType.HEALTHHealth care.
RNHMSSite.LocationType.HINDU_TEMPLEHindu temple.
RNHMSSite.LocationType.HOME_GOODS_STOREHousehold goods store.
RNHMSSite.LocationType.HOSPITALHospital.
RNHMSSite.LocationType.INSURANCE_AGENCYInsurance company.
RNHMSSite.LocationType.INTERSECTIONIntersection.
RNHMSSite.LocationType.JEWELRY_STOREJewelry store.
RNHMSSite.LocationType.LAUNDRYLaundry room.
RNHMSSite.LocationType.LAWYERLaw office.
RNHMSSite.LocationType.LIBRARYLibrary.
RNHMSSite.LocationType.LIGHT_RAIL_STATIONLight rail station.
RNHMSSite.LocationType.LIQUOR_STORELiquor store.
RNHMSSite.LocationType.LOCALITYLocal government office.
RNHMSSite.LocationType.LOCAL_GOVERNMENT_OFFICELocality.
RNHMSSite.LocationType.LOCKSMITHLocksmith.
RNHMSSite.LocationType.LODGINGLodging.
RNHMSSite.LocationType.MEAL_DELIVERYFood delivery.
RNHMSSite.LocationType.MEAL_TAKEAWAYTakeout.
RNHMSSite.LocationType.MOSQUEMosque.
RNHMSSite.LocationType.MOVIE_RENTALMovie rental store.
RNHMSSite.LocationType.MOVIE_THEATERMovie theater.
RNHMSSite.LocationType.MOVING_COMPANYMoving company.
RNHMSSite.LocationType.MUSEUMMuseum.
RNHMSSite.LocationType.NATURAL_FEATURENatural feature.
RNHMSSite.LocationType.NEIGHBORHOODNeighborhood.
RNHMSSite.LocationType.NIGHT_CLUBNightclub.
RNHMSSite.LocationType.OTHEROthers.
RNHMSSite.LocationType.PAINTERPainter.
RNHMSSite.LocationType.PARKPark.
RNHMSSite.LocationType.PARKINGParking lot.
RNHMSSite.LocationType.PET_STOREPet store.
RNHMSSite.LocationType.PHARMACYPharmacy.
RNHMSSite.LocationType.PHYSIOTHERAPISTPhysical therapist.
RNHMSSite.LocationType.PLACE_OF_WORSHIPPlace of worship.
RNHMSSite.LocationType.PLUMBERPlumber.
RNHMSSite.LocationType.POINT_OF_INTERESTPoint of interest (POI).
RNHMSSite.LocationType.POLICEPolice.
RNHMSSite.LocationType.POLITICALPolitical place.
RNHMSSite.LocationType.POSTAL_CODEPostal code.
RNHMSSite.LocationType.POSTAL_CODE_PREFIXPostal code prefix.
RNHMSSite.LocationType.POSTAL_CODE_SUFFIXPostal code suffix.
RNHMSSite.LocationType.POSTAL_TOWNPostal town.
RNHMSSite.LocationType.POST_BOXMailbox.
RNHMSSite.LocationType.POST_OFFICEPost office.
RNHMSSite.LocationType.PREMISEPremises.
RNHMSSite.LocationType.PRIMARY_SCHOOLPrimary school.
RNHMSSite.LocationType.REAL_ESTATE_AGENCYReal estate agency.
RNHMSSite.LocationType.REGIONRegion.
RNHMSSite.LocationType.REGIONSRegions.
RNHMSSite.LocationType.RESTAURANTRestaurant.
RNHMSSite.LocationType.ROOFING_CONTRACTORRoofing contractor.
RNHMSSite.LocationType.ROOMRoom.
RNHMSSite.LocationType.ROUTERoute.
RNHMSSite.LocationType.RV_PARKRecreational vehicle park.
RNHMSSite.LocationType.SCHOOLSchool.
RNHMSSite.LocationType.SECONDARY_SCHOOLSecondary school.
RNHMSSite.LocationType.SHOE_STOREShoe store.
RNHMSSite.LocationType.SHOPPING_MALLShopping mall.
RNHMSSite.LocationType.SPASpa.
RNHMSSite.LocationType.STADIUMStadium.
RNHMSSite.LocationType.STORAGEStorage.
RNHMSSite.LocationType.STOREStore.
RNHMSSite.LocationType.STREET_ADDRESSStreet address.
RNHMSSite.LocationType.STREET_NUMBERStreet number.
RNHMSSite.LocationType.SUBLOCALITYSub-locality.
RNHMSSite.LocationType.SUBLOCALITY_LEVEL_1Level-1 sub-locality.
RNHMSSite.LocationType.SUBLOCALITY_LEVEL_2Level-2 sub-locality.
RNHMSSite.LocationType.SUBLOCALITY_LEVEL_3Level-3 sub-locality.
RNHMSSite.LocationType.SUBLOCALITY_LEVEL_4Level-4 sub-locality.
RNHMSSite.LocationType.SUBLOCALITY_LEVEL_5Level-5 sub-locality.
RNHMSSite.LocationType.SUBPREMISESub-premises.
RNHMSSite.LocationType.SUBWAY_STATIONSubway station.
RNHMSSite.LocationType.SUPERMARKETSupermarket.
RNHMSSite.LocationType.SYNAGOGUESynagogue.
RNHMSSite.LocationType.TAXI_STANDTaxi stand.
RNHMSSite.LocationType.TOURIST_ATTRACTIONTourist attraction.
RNHMSSite.LocationType.TOWNTown.
RNHMSSite.LocationType.TOWN_SQUARETown square.
RNHMSSite.LocationType.TRAIN_STATIONRailway station.
RNHMSSite.LocationType.TRANSIT_STATIONTransit station.
RNHMSSite.LocationType.TRAVEL_AGENCYTravel agency.
RNHMSSite.LocationType.UNIVERSITYUniversity.
RNHMSSite.LocationType.VETERINARY_CAREVeterinary care.
RNHMSSite.LocationType.ZOOZoo.
HwLocationType

Enumerated Huawei place types.

Constant NameDescription
RNHMSSite.HwLocationType.ACCESS_GATEWAYAccess gateway.
RNHMSSite.HwLocationType.ADDRESSAddress.
RNHMSSite.HwLocationType.ADMIN_FEATUREAdmin feature.
RNHMSSite.HwLocationType.ADMINISTRATIVE_AREA_LEVEL_1Level-1 administrative region.
RNHMSSite.HwLocationType.ADMINISTRATIVE_AREA_LEVEL_2Level-2 administrative region.
RNHMSSite.HwLocationType.ADMINISTRATIVE_AREA_LEVEL_3Level-3 administrative region.
RNHMSSite.HwLocationType.ADMINISTRATIVE_AREA_LEVEL_4Level-4 administrative region.
RNHMSSite.HwLocationType.ADVENTURE_SPORTS_VENUEAdventure sports venue.
RNHMSSite.HwLocationType.ADVENTURE_VEHICLE_TRAILAdventure vehicle trail.
RNHMSSite.HwLocationType.ADVERTISING_AND_MARKETING_COMPANYAdvertising and marketing company.
RNHMSSite.HwLocationType.AFGHAN_RESTAURANTAfghan restaurant.
RNHMSSite.HwLocationType.AFRICAN_RESTAURANTAfrican restaurant.
RNHMSSite.HwLocationType.AGRICULTURAL_SUPPLY_STOREAgricultural supply store.
RNHMSSite.HwLocationType.AGRICULTURAL_TECHNOLOGY_COMPANYAgricultural technology company.
RNHMSSite.HwLocationType.AGRICULTURE_BUSINESSAgriculture business.
RNHMSSite.HwLocationType.AIRFIELDAirfield.
RNHMSSite.HwLocationType.AIRLINEAirline.
RNHMSSite.HwLocationType.AIRLINE_ACCESSAirline access.
RNHMSSite.HwLocationType.AIRPORTAirport.
RNHMSSite.HwLocationType.ALGERIAN_RESTAURANTAlgerian restaurant.
RNHMSSite.HwLocationType.AMBULANCE_UNITAmbulance unit.
RNHMSSite.HwLocationType.AMERICAN_RESTAURANTAmerican restaurant.
RNHMSSite.HwLocationType.AMPHITHEATERAmphitheater.
RNHMSSite.HwLocationType.AMUSEMENT_ARCADEAmusement arcade.
RNHMSSite.HwLocationType.AMUSEMENT_PARKAmusement park.
RNHMSSite.HwLocationType.AMUSEMENT_PLACEAmusement place.
RNHMSSite.HwLocationType.ANIMAL_SERVICE_STOREAnimal service store.
RNHMSSite.HwLocationType.ANIMAL_SHELTERAnimal shelter.
RNHMSSite.HwLocationType.ANTIQUE_ART_STOREAntique art store.
RNHMSSite.HwLocationType.APARTMENTApartment.
RNHMSSite.HwLocationType.AQUATIC_ZOO_MARINE_PARKAquatic zoo marine park.
RNHMSSite.HwLocationType.ARABIAN_RESTAURANTArabian restaurant.
RNHMSSite.HwLocationType.ARBORETA_BOTANICAL_GARDENSArboreta botanical gardens.
RNHMSSite.HwLocationType.ARCHArch.
RNHMSSite.HwLocationType.ARGENTINEAN_RESTAURANTArgentinean restaurant.
RNHMSSite.HwLocationType.ARMENIAN_RESTAURANTArmenian restaurant.
RNHMSSite.HwLocationType.ART_MUSEUMArt museum.
RNHMSSite.HwLocationType.ART_SCHOOLArt school.
RNHMSSite.HwLocationType.ASHRAMAshram.
RNHMSSite.HwLocationType.ASIAN_RESTAURANTAsian restaurant.
RNHMSSite.HwLocationType.ATHLETIC_STADIUMAthletic stadium.
RNHMSSite.HwLocationType.ATV_SNOWMOBILE_DEALERAtv snowmobile dealer.
RNHMSSite.HwLocationType.AUSTRALIAN_RESTAURANTAustralian restaurant.
RNHMSSite.HwLocationType.AUSTRIAN_RESTAURANTAustrian restaurant.
RNHMSSite.HwLocationType.AUTOMATIC_TELLER_MACHINEAutomatic teller machine.
RNHMSSite.HwLocationType.AUTOMOBILE_ACCESSORIES_SHOPAutomobile accessories shop.
RNHMSSite.HwLocationType.AUTOMOBILE_COMPANYAutomobile company.
RNHMSSite.HwLocationType.AUTOMOBILE_MANUFACTURING_COMPANYAutomobile manufacturing company.
RNHMSSite.HwLocationType.AUTOMOTIVEAutomotive.
RNHMSSite.HwLocationType.AUTOMOTIVE_DEALERAutomotive dealer.
RNHMSSite.HwLocationType.AUTOMOTIVE_GLASS_REPLACEMENT_SHOPAutomotive glass replacement shop.
RNHMSSite.HwLocationType.AUTOMOTIVE_REPAIR_SHOPAutomotive repair shop.
RNHMSSite.HwLocationType.BADMINTON_COURTBadminton court.
RNHMSSite.HwLocationType.BAGS_LEATHERWEAR_SHOPBags leatherwear shop.
RNHMSSite.HwLocationType.BAKERYBakery.
RNHMSSite.HwLocationType.BANKBank.
RNHMSSite.HwLocationType.BANQUET_ROOMBanquet room.
RNHMSSite.HwLocationType.BARBar.
RNHMSSite.HwLocationType.BARBECUE_RESTAURANTBarbecue restaurant.
RNHMSSite.HwLocationType.BASEBALL_FIELDBaseball field.
RNHMSSite.HwLocationType.BASKETBALL_COURTBasketball court.
RNHMSSite.HwLocationType.BASQUE_RESTAURANTBasque restaurant.
RNHMSSite.HwLocationType.BATTLEFIELDBattlefield.
RNHMSSite.HwLocationType.BAYBay.
RNHMSSite.HwLocationType.BEACHBeach.
RNHMSSite.HwLocationType.BEACH_CLUBBeach club.
RNHMSSite.HwLocationType.BEAUTY_SALONBeauty salon.
RNHMSSite.HwLocationType.BEAUTY_SUPPLY_SHOPBeauty supply shop.
RNHMSSite.HwLocationType.BED_BREAKFAST_GUEST_HOUSESBed breakfast guest houses.
RNHMSSite.HwLocationType.BELGIAN_RESTAURANTBelgian restaurant.
RNHMSSite.HwLocationType.BETTING_STATIONBetting station.
RNHMSSite.HwLocationType.BICYCLE_PARKING_PLACEBicycle parking place.
RNHMSSite.HwLocationType.BICYCLE_SHARING_LOCATIONBicycle sharing location.
RNHMSSite.HwLocationType.BILLIARDS_POOL_HALLBilliards pool hall.
RNHMSSite.HwLocationType.BISTROBistro.
RNHMSSite.HwLocationType.BLOOD_BANKBlood bank.
RNHMSSite.HwLocationType.BOAT_DEALERBoat dealer.
RNHMSSite.HwLocationType.BOAT_FERRYBoat ferry.
RNHMSSite.HwLocationType.BOAT_LAUNCHING_RAMPBoat launching ramp.
RNHMSSite.HwLocationType.BOATING_EQUIPMENT_ACCESSORIES_STOREBoating equipment accessories store.
RNHMSSite.HwLocationType.BODYSHOPSBodyshops.
RNHMSSite.HwLocationType.BOLIVIAN_RESTAURANTBolivian restaurant.
RNHMSSite.HwLocationType.BOOKSTOREBookstore.
RNHMSSite.HwLocationType.BORDER_POSTBorder post.
RNHMSSite.HwLocationType.BOSNIAN_RESTAURANTBosnian restaurant.
RNHMSSite.HwLocationType.BOWLING_FIELDBowling field.
RNHMSSite.HwLocationType.BRAZILIAN_RESTAURANTBrazilian restaurant.
RNHMSSite.HwLocationType.BRIDGEBridge.
RNHMSSite.HwLocationType.BRIDGE_TUNNEL_ENGINEERING_COMPANYBridge tunnel engineering company.
RNHMSSite.HwLocationType.BRITISH_RESTAURANTBritish restaurant.
RNHMSSite.HwLocationType.BUDDHIST_TEMPLEBuddhist temple.
RNHMSSite.HwLocationType.BUFFETBuffet.
RNHMSSite.HwLocationType.BUILDINGBuilding.
RNHMSSite.HwLocationType.BULGARIAN_RESTAURANTBulgarian restaurant.
RNHMSSite.HwLocationType.BUNGALOWBungalow.
RNHMSSite.HwLocationType.BURMESE_RESTAURANTBurmese restaurant.
RNHMSSite.HwLocationType.BUS_CHARTER_RENTAL_COMPANYBus charter rental company.
RNHMSSite.HwLocationType.BUS_COMPANYBus company.
RNHMSSite.HwLocationType.BUS_DEALERBus dealer.
RNHMSSite.HwLocationType.BUS_STOPBus stop.
RNHMSSite.HwLocationType.BUSINESSBusiness.
RNHMSSite.HwLocationType.BUSINESS_PARKBusiness park.
RNHMSSite.HwLocationType.BUSINESS_SERVICES_COMPANYBusiness services company.
RNHMSSite.HwLocationType.CABARETCabaret.
RNHMSSite.HwLocationType.CABINS_LODGESCabins lodges.
RNHMSSite.HwLocationType.CABLE_TELEPHONE_COMPANYCable telephone company.
RNHMSSite.HwLocationType.CAFECafe.
RNHMSSite.HwLocationType.CAFE_PUBCafe pub.
RNHMSSite.HwLocationType.CAFETERIACafeteria.
RNHMSSite.HwLocationType.CALIFORNIAN_RESTAURANTCalifornian restaurant.
RNHMSSite.HwLocationType.CAMBODIAN_RESTAURANTCambodian restaurant.
RNHMSSite.HwLocationType.CAMPING_GROUNDCamping ground.
RNHMSSite.HwLocationType.CANADIAN_RESTAURANTCanadian restaurant.
RNHMSSite.HwLocationType.CAPECape.
RNHMSSite.HwLocationType.CAPITALCapital.
RNHMSSite.HwLocationType.CAPITAL_CITYCapital city.
RNHMSSite.HwLocationType.CAR_CLUBCar club.
RNHMSSite.HwLocationType.CAR_DEALERCar dealer.
RNHMSSite.HwLocationType.CAR_RENTALCar rental.
RNHMSSite.HwLocationType.CAR_RENTAL_COMPANYCar rental company.
RNHMSSite.HwLocationType.CAR_WASHCar wash.
RNHMSSite.HwLocationType.CAR_WASH_SUBCar wash sub.
RNHMSSite.HwLocationType.CARAVAN_SITECaravan site.
RNHMSSite.HwLocationType.CARGO_CENTERCargo center.
RNHMSSite.HwLocationType.CARIBBEAN_RESTAURANTCaribbean restaurant.
RNHMSSite.HwLocationType.CARPET_FLOOR_COVERING_STORECarpet floor covering store.
RNHMSSite.HwLocationType.CASINOCasino.
RNHMSSite.HwLocationType.CATERING_COMPANYCatering company.
RNHMSSite.HwLocationType.CAVECave.
RNHMSSite.HwLocationType.CD_DVD_VIDEO_RENTAL_STORECd-dvd video rental store.
RNHMSSite.HwLocationType.CD_DVD_VIDEO_STORECd-dvd video store.
RNHMSSite.HwLocationType.CD_DVD_VIDEO_STORE_SUBCd-dvd video store sub.
RNHMSSite.HwLocationType.CEMETERYCemetery.
RNHMSSite.HwLocationType.CHALETChalet.
RNHMSSite.HwLocationType.CHEMICAL_COMPANYChemical company.
RNHMSSite.HwLocationType.CHICKEN_RESTAURANTChicken restaurant.
RNHMSSite.HwLocationType.CHILD_CARE_FACILITYChild care facility.
RNHMSSite.HwLocationType.CHILDRENS_MUSEUMChildrens museum.
RNHMSSite.HwLocationType.CHILEAN_RESTAURANTChilean restaurant.
RNHMSSite.HwLocationType.CHINESE_MEDICINE_HOSPITALChinese medicine hospital.
RNHMSSite.HwLocationType.CHINESE_RESTAURANTChinese restaurant.
RNHMSSite.HwLocationType.CHRISTMAS_HOLIDAY_STOREChristmas holiday store.
RNHMSSite.HwLocationType.CHURCHChurch.
RNHMSSite.HwLocationType.CINEMACinema.
RNHMSSite.HwLocationType.CINEMA_SUBCinema sub.
RNHMSSite.HwLocationType.CITIESCities.
RNHMSSite.HwLocationType.CITY_CENTERCity center.
RNHMSSite.HwLocationType.CITY_HALLCity hall.
RNHMSSite.HwLocationType.CIVIC_COMMUNITY_CENTERCivic community center.
RNHMSSite.HwLocationType.CLEANING_SERVICE_COMPANYCleaning service company.
RNHMSSite.HwLocationType.CLOTHING_ACCESSORIES_STOREClothing accessories store.
RNHMSSite.HwLocationType.CLUB_ASSOCIATIONClub association.
RNHMSSite.HwLocationType.COACH_PARKING_AREACoach parking area.
RNHMSSite.HwLocationType.COACH_STATIONCoach station.
RNHMSSite.HwLocationType.COCKTAIL_BARCocktail bar.
RNHMSSite.HwLocationType.COFFEE_SHOPCoffee shop.
RNHMSSite.HwLocationType.COLLEGE_UNIVERSITYCollege university.
RNHMSSite.HwLocationType.COLOMBIAN_RESTAURANTColombian restaurant.
RNHMSSite.HwLocationType.COMEDY_CLUBComedy club.
RNHMSSite.HwLocationType.COMMERCIAL_BUILDINGCommercial building.
RNHMSSite.HwLocationType.COMMUNITY_CENTERCommunity center.
RNHMSSite.HwLocationType.COMPANYCompany.
RNHMSSite.HwLocationType.COMPUTER_AND_DATA_SERVICES_CORPORATIONComputer and data services corporation.
RNHMSSite.HwLocationType.COMPUTER_SOFTWARE_COMPANYComputer software company.
RNHMSSite.HwLocationType.COMPUTER_STOREComputer store.
RNHMSSite.HwLocationType.CONCERT_HALLConcert hall.
RNHMSSite.HwLocationType.CONDOMINIUM_COMPLEXCondominium complex.
RNHMSSite.HwLocationType.CONSTRUCTION_COMPANYConstruction company.
RNHMSSite.HwLocationType.CONSTRUCTION_MATERIAL_EQUIPMENT_SHOPConstruction material equipment shop.
RNHMSSite.HwLocationType.CONSUMER_ELECTRONICS_STOREConsumer electronics store.
RNHMSSite.HwLocationType.CONTINENTContinent.
RNHMSSite.HwLocationType.CONVENIENCE_STOREConvenience store.
RNHMSSite.HwLocationType.CORSICAN_RESTAURANTCorsican restaurant.
RNHMSSite.HwLocationType.COTTAGECottage.
RNHMSSite.HwLocationType.COUNTRYCountry.
RNHMSSite.HwLocationType.COUNTYCounty.
RNHMSSite.HwLocationType.COUNTY_COUNCILCounty council.
RNHMSSite.HwLocationType.COURIER_DROP_BOXCourier drop box.
RNHMSSite.HwLocationType.COURTHOUSECourthouse.
RNHMSSite.HwLocationType.COVECove.
RNHMSSite.HwLocationType.CREOLE_CAJUN_RESTAURANTCreole cajun restaurant.
RNHMSSite.HwLocationType.CREPERIECreperie.
RNHMSSite.HwLocationType.CRICKET_GROUNDCricket ground.
RNHMSSite.HwLocationType.CUBAN_RESTAURANTCuban restaurant.
RNHMSSite.HwLocationType.CULINARY_SCHOOLCulinary school.
RNHMSSite.HwLocationType.CULTURAL_CENTERCultural center.
RNHMSSite.HwLocationType.CURRENCY_EXCHANGECurrency exchange.
RNHMSSite.HwLocationType.CURTAIN_TEXTILE_STORECurtain textile store.
RNHMSSite.HwLocationType.CYPRIOT_RESTAURANTCypriot restaurant.
RNHMSSite.HwLocationType.CZECH_RESTAURANTCzech restaurant.
RNHMSSite.HwLocationType.DAMDam.
RNHMSSite.HwLocationType.DANCE_STUDIO_SCHOOLDance studio school.
RNHMSSite.HwLocationType.DANCING_CLUBDancing club.
RNHMSSite.HwLocationType.DANISH_RESTAURANTDanish restaurant.
RNHMSSite.HwLocationType.DELICATESSEN_STOREDelicatessen store.
RNHMSSite.HwLocationType.DELIVERY_ENTRANCEDelivery entrance.
RNHMSSite.HwLocationType.DENTAL_CLINICDental clinic.
RNHMSSite.HwLocationType.DEPARTMENT_STOREDepartment store.
RNHMSSite.HwLocationType.DHARMA_TEMPLEDharma temple.
RNHMSSite.HwLocationType.DINNER_THEATERDinner theater.
RNHMSSite.HwLocationType.DISCOTHEQUEDiscotheque.
RNHMSSite.HwLocationType.DIVERSIFIED_FINANCIAL_SERVICE_COMPANYDiversified financial service company.
RNHMSSite.HwLocationType.DIVING_CENTERDiving center.
RNHMSSite.HwLocationType.DO_IT_YOURSELF_CENTERSDo it yourself centers.
RNHMSSite.HwLocationType.DOCKDock.
RNHMSSite.HwLocationType.DOMINICAN_RESTAURANTDominican restaurant.
RNHMSSite.HwLocationType.DONGBEI_RESTAURANTDongbei restaurant.
RNHMSSite.HwLocationType.DOUGHNUT_SHOPDoughnut shop.
RNHMSSite.HwLocationType.DRIVE_IN_CINEMADrive in cinema.
RNHMSSite.HwLocationType.DRIVE_THROUGH_BOTTLE_SHOPDrive through bottle shop.
RNHMSSite.HwLocationType.DRIVING_SCHOOLDriving school.
RNHMSSite.HwLocationType.DRUGSTOREDrugstore.
RNHMSSite.HwLocationType.DRY_CLEANERSDry cleaners.
RNHMSSite.HwLocationType.DUNEDune.
RNHMSSite.HwLocationType.DUTCH_RESTAURANTDutch restaurant.
RNHMSSite.HwLocationType.EARTHQUAKEASSEMBLY_POINTEarthquake assembly point.
RNHMSSite.HwLocationType.EATING_DRINKINGEating drinking.
RNHMSSite.HwLocationType.EDUCATION_INSTITUTIONEducation institution.
RNHMSSite.HwLocationType.EGYPTIAN_RESTAURANTEgyptian restaurant.
RNHMSSite.HwLocationType.ELECTRIC_VEHICLE_CHARGING_STATIONElectric vehicle charging station.
RNHMSSite.HwLocationType.ELECTRICAL_APPLIANCE_STOREElectrical appliance store.
RNHMSSite.HwLocationType.ELECTRICAL_APPLIANCE_STORE_SUBElectrical appliance store sub.
RNHMSSite.HwLocationType.ELECTRONICS_COMPANYElectronics company.
RNHMSSite.HwLocationType.ELECTRONICS_STOREElectronics store.
RNHMSSite.HwLocationType.EMBASSYEmbassy.
RNHMSSite.HwLocationType.EMERGENCY_ASSEMBLY_POINTEmergency assembly point.
RNHMSSite.HwLocationType.EMERGENCY_MEDICAL_SERVICE_CENTEREmergency medical service center.
RNHMSSite.HwLocationType.EMERGENCY_ROOMEmergency room.
RNHMSSite.HwLocationType.ENGLISH_RESTAURANTEnglish restaurant.
RNHMSSite.HwLocationType.ENTERTAINMENT_CABARET_LIVEEntertainment cabaret live.
RNHMSSite.HwLocationType.ENTERTAINMENT_PLACEEntertainment place.
RNHMSSite.HwLocationType.EQUIPMENT_RENTAL_COMPANYEquipment rental company.
RNHMSSite.HwLocationType.EROTIC_RESTAURANTErotic restaurant.
RNHMSSite.HwLocationType.ESTABLISHMENTEstablishment.
RNHMSSite.HwLocationType.ETHIOPIAN_RESTAURANTEthiopian restaurant.
RNHMSSite.HwLocationType.EXCHANGEExchange.
RNHMSSite.HwLocationType.EXHIBITION_CONVENTION_CENTERExhibition convention center.
RNHMSSite.HwLocationType.EXOTIC_RESTAURANTExotic restaurant.
RNHMSSite.HwLocationType.FACTORY_OUTLETSFactory outlets.
RNHMSSite.HwLocationType.FAIRGROUNDFairground.
RNHMSSite.HwLocationType.FARMFarm.
RNHMSSite.HwLocationType.FARMER_MARKETFarmer market.
RNHMSSite.HwLocationType.FAST_FOOD_RESTAURANTFast food restaurant.
RNHMSSite.HwLocationType.FERRY_TERMINALFerry terminal.
RNHMSSite.HwLocationType.FILIPINO_RESTAURANTFilipino restaurant.
RNHMSSite.HwLocationType.FINNISH_RESTAURANTFinnish restaurant.
RNHMSSite.HwLocationType.FIRE_ASSEMBLY_POINTFire assembly point.
RNHMSSite.HwLocationType.FIRE_STATION_BRIGADEFire station brigade.
RNHMSSite.HwLocationType.FISH_STOREFish store.
RNHMSSite.HwLocationType.FISHING_HUNTING_AREAFishing hunting area.
RNHMSSite.HwLocationType.FITNESS_CLUB_CENTERFitness club center.
RNHMSSite.HwLocationType.FIVE_STAR_HOTELFive star hotel.
RNHMSSite.HwLocationType.FLATS_APARTMENT_COMPLEXFlats apartment complex.
RNHMSSite.HwLocationType.FLOOD_ASSEMBLY_POINTFlood assembly point.
RNHMSSite.HwLocationType.FLORISTSFlorists.
RNHMSSite.HwLocationType.FLYING_CLUBFlying club.
RNHMSSite.HwLocationType.FONDUE_RESTAURANTFondue restaurant.
RNHMSSite.HwLocationType.FOOD_DRINK_SHOPFood drink shop.
RNHMSSite.HwLocationType.FOOD_MARKETFood market.
RNHMSSite.HwLocationType.FOOTBALL_FIELDFootball field.
RNHMSSite.HwLocationType.FOREST_AREAForest area.
RNHMSSite.HwLocationType.FOUR_STAR_HOTELFour star hotel.
RNHMSSite.HwLocationType.FRENCH_RESTAURANTFrench restaurant.
RNHMSSite.HwLocationType.FUNERAL_SERVICE_COMPANYFuneral service company.
RNHMSSite.HwLocationType.FURNITURE_ACCESSORIES_STOREFurniture accessories store.
RNHMSSite.HwLocationType.FURNITURE_STOREFurniture store.
RNHMSSite.HwLocationType.FUSION_RESTAURANTFusion restaurant.
RNHMSSite.HwLocationType.GALLERYGallery.
RNHMSSite.HwLocationType.GARDENING_CERVICE_CENTERGardening cervice center.
RNHMSSite.HwLocationType.GENERAL_AUTO_REPAIR_SERVICE_CENTERGeneral auto repair service center.
RNHMSSite.HwLocationType.GENERAL_CITYGeneral city.
RNHMSSite.HwLocationType.GENERAL_CLINICGeneral clinic.
RNHMSSite.HwLocationType.GENERAL_HOSPITALGeneral hospital.
RNHMSSite.HwLocationType.GENERAL_POST_OFFICEGeneral post office.
RNHMSSite.HwLocationType.GEOCODEGeocode.
RNHMSSite.HwLocationType.GEOGRAPHIC_FEATUREGeographic feature.
RNHMSSite.HwLocationType.GERMAN_RESTAURANTGerman restaurant.
RNHMSSite.HwLocationType.GIFT_STOREGift store.
RNHMSSite.HwLocationType.GLASS_WINDOW_STOREGlass window store.
RNHMSSite.HwLocationType.GLASSWARE_CERAMIC_SHOPGlassware ceramic shop.
RNHMSSite.HwLocationType.GOLD_EXCHANGEGold exchange.
RNHMSSite.HwLocationType.GOLF_COURSEGolf course.
RNHMSSite.HwLocationType.GOVERNMENT_OFFICEGovernment office.
RNHMSSite.HwLocationType.GOVERNMENT_PUBLIC_SERVICEGovernment public service.
RNHMSSite.HwLocationType.GREEK_RESTAURANTGreek restaurant.
RNHMSSite.HwLocationType.GREENGROCERYGreengrocery.
RNHMSSite.HwLocationType.GRILLGrill.
RNHMSSite.HwLocationType.GROCERYGrocery.
RNHMSSite.HwLocationType.GUANGDONG_RESTAURANTGuangdong restaurant.
RNHMSSite.HwLocationType.GURUDWARAGurudwara.
RNHMSSite.HwLocationType.HAIR_SALON_BARBERSHOPHair salon barbershop.
RNHMSSite.HwLocationType.HAMBURGER_RESTAURANTHamburger restaurant.
RNHMSSite.HwLocationType.HAMLETHamlet.
RNHMSSite.HwLocationType.HARBORHarbor.
RNHMSSite.HwLocationType.HARDWARE_STOREHardware store.
RNHMSSite.HwLocationType.HEALTH_CAREHealth care.
RNHMSSite.HwLocationType.HEALTHCARE_SERVICE_CENTERHealthcare service center.
RNHMSSite.HwLocationType.HELIPAD_HELICOPTER_LANDINGHelipad helicopter landing.
RNHMSSite.HwLocationType.HIGH_SCHOOLHigh school.
RNHMSSite.HwLocationType.HIGHWAY__ENTRANCEHighway entrance.
RNHMSSite.HwLocationType.HIGHWAY_EXITHighway exit.
RNHMSSite.HwLocationType.HIKING_TRAILHiking trail.
RNHMSSite.HwLocationType.HILLHill.
RNHMSSite.HwLocationType.HINDU_TEMPLEHindu temple.
RNHMSSite.HwLocationType.HISTORIC_SITEHistoric site.
RNHMSSite.HwLocationType.HISTORICAL_PARKHistorical park.
RNHMSSite.HwLocationType.HISTORY_MUSEUMHistory museum.
RNHMSSite.HwLocationType.HOBBY_SHOPHobby shop.
RNHMSSite.HwLocationType.HOCKEY_CLUBHockey club.
RNHMSSite.HwLocationType.HOCKEY_FIELDHockey field.
RNHMSSite.HwLocationType.HOLIDAY_HOUSE_RENTALHoliday house rental.
RNHMSSite.HwLocationType.HOME_APPLIANCE_REPAIR_COMPANYHome appliance repair company.
RNHMSSite.HwLocationType.HOME_GOODS_STOREHome goods store.
RNHMSSite.HwLocationType.HORSE_RACING_TRACKHorse racing track.
RNHMSSite.HwLocationType.HORSE_RIDING_FIELDHorse riding field.
RNHMSSite.HwLocationType.HORSE_RIDING_TRAILHorse riding trail.
RNHMSSite.HwLocationType.HORTICULTURE_COMPANYHorticulture company.
RNHMSSite.HwLocationType.HOSPITAL_FOR_WOMEN_AND_CHILDRENHospital for women and children.
RNHMSSite.HwLocationType.HOSPITAL_POLYCLINICHospital polyclinic.
RNHMSSite.HwLocationType.HOSTELHostel.
RNHMSSite.HwLocationType.HOT_POT_RESTAURANTHot pot restaurant.
RNHMSSite.HwLocationType.HOTELHotel.
RNHMSSite.HwLocationType.HOTEL_MOTELHotel motel.
RNHMSSite.HwLocationType.HOTELS_WITH_LESS_THAN_TWO_STARSHotels with less than two stars.
RNHMSSite.HwLocationType.HOUSEHOLD_APPLIANCE_STOREHousehold appliance store.
RNHMSSite.HwLocationType.HUNAN_RESTAURANTHunan restaurant.
RNHMSSite.HwLocationType.HUNGARIAN_RESTAURANTHungarian restaurant.
RNHMSSite.HwLocationType.ICE_CREAM_PARLORIce cream parlor.
RNHMSSite.HwLocationType.ICE_HOCKEY_RINKIce hockey rink.
RNHMSSite.HwLocationType.ICE_SKATING_RINKIce skating rink.
RNHMSSite.HwLocationType.IMPORT_AND_EXPORT_DISTRIBUTION_COMPANYImport and export distribution company.
RNHMSSite.HwLocationType.IMPORTANT_TOURIST_ATTRACTIONImportant tourist attraction.
RNHMSSite.HwLocationType.INDIAN_RESTAURANTIndian restaurant.
RNHMSSite.HwLocationType.INDONESIAN_RESTAURANTIndonesian restaurant.
RNHMSSite.HwLocationType.INDUSTRIAL_BUILDINGIndustrial building.
RNHMSSite.HwLocationType.INFORMAL_MARKETInformal market.
RNHMSSite.HwLocationType.INSURANCE_COMPANYInsurance company.
RNHMSSite.HwLocationType.INTERCITY_RAILWAY_STATIONIntercity railway station.
RNHMSSite.HwLocationType.INTERNATIONAL_ORGANIZATIONInternational organization.
RNHMSSite.HwLocationType.INTERNATIONAL_RAILWAY_STATIONInternational railway station.
RNHMSSite.HwLocationType.INTERNATIONAL_RESTAURANTInternational restaurant.
RNHMSSite.HwLocationType.INTERNET_CAFEInternet cafe.
RNHMSSite.HwLocationType.INVESTMENT_CONSULTING_FIRMInvestment consulting firm.
RNHMSSite.HwLocationType.IRANIAN_RESTAURANTIranian restaurant.
RNHMSSite.HwLocationType.IRISH_RESTAURANTIrish restaurant.
RNHMSSite.HwLocationType.ISLANDIsland.
RNHMSSite.HwLocationType.ISRAELI_RESTAURANTIsraeli restaurant.
RNHMSSite.HwLocationType.ITALIAN_RESTAURANTItalian restaurant.
RNHMSSite.HwLocationType.JAIN_TEMPLEJain temple.
RNHMSSite.HwLocationType.JAMAICAN_RESTAURANTJamaican restaurant.
RNHMSSite.HwLocationType.JAPANESE_RESTAURANTJapanese restaurant.
RNHMSSite.HwLocationType.JAZZ_CLUBJazz club.
RNHMSSite.HwLocationType.JEWELRY_CLOCK_AND_WATCH_SHOPJewelry clock and watch shop.
RNHMSSite.HwLocationType.JEWISH_RESTAURANTJewish restaurant.
RNHMSSite.HwLocationType.JUNIOR_COLLEGE_COMMUNITY_COLLEGEJunior college community college.
RNHMSSite.HwLocationType.KARAOKE_CLUBKaraoke club.
RNHMSSite.HwLocationType.KITCHEN_AND_SANITATION_STOREKitchen and sanitation store.
RNHMSSite.HwLocationType.KOREAN_RESTAURANTKorean restaurant.
RNHMSSite.HwLocationType.KOSHER_RESTAURANTKosher restaurant.
RNHMSSite.HwLocationType.LAGOONLagoon.
RNHMSSite.HwLocationType.LAKESHORELakeshore.
RNHMSSite.HwLocationType.LANGUAGE_SCHOOLLanguage school.
RNHMSSite.HwLocationType.LATIN_AMERICAN_RESTAURANTLatin american restaurant.
RNHMSSite.HwLocationType.LAUNDRYLaundry.
RNHMSSite.HwLocationType.LEBANESE_RESTAURANTLebanese restaurant.
RNHMSSite.HwLocationType.LEGAL_SERVICE_COMPANYLegal service company.
RNHMSSite.HwLocationType.LEISURELeisure.
RNHMSSite.HwLocationType.LEISURE_CENTERLeisure center.
RNHMSSite.HwLocationType.LIBRARYLibrary.
RNHMSSite.HwLocationType.LIGHTING_STORELighting store.
RNHMSSite.HwLocationType.LOADING_ZONELoading zone.
RNHMSSite.HwLocationType.LOCAL_POST_OFFICELocal post office.
RNHMSSite.HwLocationType.LOCAL_SPECIALTY_STORELocal specialty store.
RNHMSSite.HwLocationType.LODGING_LIVING_ACCOMMODATIONLodging living accommodation.
RNHMSSite.HwLocationType.LOTTERY_SHOPLottery shop.
RNHMSSite.HwLocationType.LUXEMBOURGIAN_RESTAURANTLuxembourgian restaurant.
RNHMSSite.HwLocationType.MACROBIOTIC_RESTAURANTMacrobiotic restaurant.
RNHMSSite.HwLocationType.MAGHRIB_RESTAURANTMaghrib restaurant.
RNHMSSite.HwLocationType.MAIL_PACKAGE_FREIGHT_DELIVERY_COMPANYMail package freight delivery company.
RNHMSSite.HwLocationType.MALTESE_RESTAURANTMaltese restaurant.
RNHMSSite.HwLocationType.MANUFACTURING_COMPANYManufacturing company.
RNHMSSite.HwLocationType.MANUFACTURING_FACTORYManufacturing factory.
RNHMSSite.HwLocationType.MARINAMarina.
RNHMSSite.HwLocationType.MARINA_SUBMarina sub.
RNHMSSite.HwLocationType.MARINE_ELECTRONIC_EQUIPMENT_STOREMarine electronic equipment store.
RNHMSSite.HwLocationType.MARKETMarket.
RNHMSSite.HwLocationType.MARSH_SWAMP_VLEIMarsh swamp vlei.
RNHMSSite.HwLocationType.MAURITIAN_RESTAURANTMauritian restaurant.
RNHMSSite.HwLocationType.MAUSOLEUM_GRAVEMausoleum grave.
RNHMSSite.HwLocationType.MEAT_STOREMeat store.
RNHMSSite.HwLocationType.MECHANICAL_ENGINEERING_COMPANYMechanical engineering company.
RNHMSSite.HwLocationType.MEDIA_COMPANYMedia company.
RNHMSSite.HwLocationType.MEDICAL_CLINICMedical clinic.
RNHMSSite.HwLocationType.MEDICAL_SUPPLIES_EQUIPMENT_STOREMedical supplies equipment store.
RNHMSSite.HwLocationType.MEDITERRANEAN_RESTAURANTMediterranean restaurant.
RNHMSSite.HwLocationType.MEMORIALMemorial.
RNHMSSite.HwLocationType.MEMORIAL_PLACEMemorial place.
RNHMSSite.HwLocationType.METROMetro.
RNHMSSite.HwLocationType.MEXICAN_RESTAURANTMexican restaurant.
RNHMSSite.HwLocationType.MICROBREWERY_BEER_GARDENMicrobrewery beer garden.
RNHMSSite.HwLocationType.MIDDLE_EASTERN_RESTAURANTMiddle eastern restaurant.
RNHMSSite.HwLocationType.MIDDLE_SCHOOLMiddle school.
RNHMSSite.HwLocationType.MILITARY_AUTHORITYMilitary authority.
RNHMSSite.HwLocationType.MILITARY_BASEMilitary base.
RNHMSSite.HwLocationType.MINERAL_COMPANYMineral company.
RNHMSSite.HwLocationType.MINERAL_HOT_SPRINGSMineral hot springs.
RNHMSSite.HwLocationType.MISCELLANEOUSMiscellaneous.
RNHMSSite.HwLocationType.MOBILE_PHONE_STOREMobile phone store.
RNHMSSite.HwLocationType.MONGOLIAN_RESTAURANTMongolian restaurant.
RNHMSSite.HwLocationType.MONUMENTMonument.
RNHMSSite.HwLocationType.MORMON_CHURCHMormon church.
RNHMSSite.HwLocationType.MOROCCAN_RESTAURANTMoroccan restaurant.
RNHMSSite.HwLocationType.MOSQUEMosque.
RNHMSSite.HwLocationType.MOTELMotel.
RNHMSSite.HwLocationType.MOTORCYCLE_DEALERMotorcycle dealer.
RNHMSSite.HwLocationType.MOTORCYCLE_REPAIR_SHOPMotorcycle repair shop.
RNHMSSite.HwLocationType.MOTORING_ORGANIZATION_OFFICEMotoring organization office.
RNHMSSite.HwLocationType.MOTORSPORT_VENUEMotorsport venue.
RNHMSSite.HwLocationType.MOUNTAIN_BIKE_TRAILMountain bike trail.
RNHMSSite.HwLocationType.MOUNTAIN_PASSMountain pass.
RNHMSSite.HwLocationType.MOUNTAIN_PEAKMountain peak.
RNHMSSite.HwLocationType.MOVING_STORAGE_COMPANYMoving storage company.
RNHMSSite.HwLocationType.MULTIPURPOSE_STADIUMMultipurpose stadium.
RNHMSSite.HwLocationType.MUSEUMMuseum.
RNHMSSite.HwLocationType.MUSIC_CENTERMusic center.
RNHMSSite.HwLocationType.MUSICAL_INSTRUMENT_STOREMusical instrument store.
RNHMSSite.HwLocationType.MUSSEL_RESTAURANTMussel restaurant.
RNHMSSite.HwLocationType.NAIL_SALONNail salon.
RNHMSSite.HwLocationType.NAMED_INTERSECTIONNamed intersection.
RNHMSSite.HwLocationType.NATIONAL_ORGANIZATIONNational organization.
RNHMSSite.HwLocationType.NATIONAL_RAILWAY_STATIONNational railway station.
RNHMSSite.HwLocationType.NATIVE_RESERVATIONNative reservation.
RNHMSSite.HwLocationType.NATURAL_ATTRACTIONNatural attraction.
RNHMSSite.HwLocationType.NATURAL_ATTRACTION_TOURISTNatural attraction tourist.
RNHMSSite.HwLocationType.NEIGHBORHOODNeighborhood.
RNHMSSite.HwLocationType.NEPALESE_RESTAURANTNepalese restaurant.
RNHMSSite.HwLocationType.NETBALL_COURTNetball court.
RNHMSSite.HwLocationType.NEWSAGENTS_AND_TOBACCONISTSNewsagents and tobacconists.
RNHMSSite.HwLocationType.NIGHT_CLUBNight club.
RNHMSSite.HwLocationType.NIGHTLIFENightlife.
RNHMSSite.HwLocationType.NON_GOVERNMENTAL_ORGANIZATIONNon governmental organization.
RNHMSSite.HwLocationType.NORWEGIAN_RESTAURANTNorwegian restaurant.
RNHMSSite.HwLocationType.NURSING_HOMENursing home.
RNHMSSite.HwLocationType.OASISOasis.
RNHMSSite.HwLocationType.OBSERVATION_DECKObservation deck.
RNHMSSite.HwLocationType.OBSERVATORYObservatory.
RNHMSSite.HwLocationType.OEMOriginal equipment manufacturer (OEM).
RNHMSSite.HwLocationType.OFFICE_EQUIPMENT_STOREOffice equipment store.
RNHMSSite.HwLocationType.OFFICE_SUPPLY_SERVICES_STOREOffice supply services store.
RNHMSSite.HwLocationType.OIL_NATURAL_GAS_COMPANYOil natural gas company.
RNHMSSite.HwLocationType.OPERAOpera.
RNHMSSite.HwLocationType.OPTICIANSOpticians.
RNHMSSite.HwLocationType.ORDER_1_AREA_GOVERNMENT_OFFICEOrder-1 area government office.
RNHMSSite.HwLocationType.ORDER_1_AREA_POLICE_STATIONOrder-1 area police station.
RNHMSSite.HwLocationType.ORDER_2_AREA_GOVERNMENT_OFFICEOrder-2 area government office.
RNHMSSite.HwLocationType.ORDER_3_AREA_GOVERNMENT_OFFICEOrder-3 area government office.
RNHMSSite.HwLocationType.ORDER_4_AREA_GOVERNMENT_OFFICEOrder-4 area government office.
RNHMSSite.HwLocationType.ORDER_5_AREA_GOVERNMENT_OFFICEOrder-5 area government office.
RNHMSSite.HwLocationType.ORDER_6_AREA_GOVERNMENT_OFFICEOrder-6 area government office.
RNHMSSite.HwLocationType.ORDER_7_AREA_GOVERNMENT_OFFICEOrder-7 area government office.
RNHMSSite.HwLocationType.ORDER_8_AREA_GOVERNMENT_OFFICEOrder-8 area government office.
RNHMSSite.HwLocationType.ORDER_8_AREA_POLICE_STATIONOrder-8 area police station.
RNHMSSite.HwLocationType.ORDER_9_AREA_GOVERNMENT_OFFICEOrder-9 area government office.
RNHMSSite.HwLocationType.ORDER_9_AREA_POLICE_STATIONOrder-9 area police station.
RNHMSSite.HwLocationType.ORGANIC_RESTAURANTOrganic restaurant.
RNHMSSite.HwLocationType.ORGANIZATIONOrganization.
RNHMSSite.HwLocationType.ORIENTAL_RESTAURANTOriental restaurant.
RNHMSSite.HwLocationType.OUTLETSOutlets.
RNHMSSite.HwLocationType.PAGODAPagoda.
RNHMSSite.HwLocationType.PAINTING_DECORATING_STOREPainting decorating store.
RNHMSSite.HwLocationType.PAKISTANI_RESTAURANTPakistani restaurant.
RNHMSSite.HwLocationType.PANPan.
RNHMSSite.HwLocationType.PARKPark.
RNHMSSite.HwLocationType.PARK_AND_RECREATION_AREAPark and recreation area.
RNHMSSite.HwLocationType.PARK_RIDEPark ride.
RNHMSSite.HwLocationType.PARKING_GARAGEParking garage.
RNHMSSite.HwLocationType.PARKING_LOTParking lot.
RNHMSSite.HwLocationType.PARKING_LOT_SUBParking lot sub.
RNHMSSite.HwLocationType.PARKWAYParkway.
RNHMSSite.HwLocationType.PASSENGER_TRANSPORT_TICKET_OFFICEPassenger transport ticket office.
RNHMSSite.HwLocationType.PAWN_SHOPPawn shop.
RNHMSSite.HwLocationType.PEDESTRIAN_SUBWAYPedestrian subway.
RNHMSSite.HwLocationType.PERSONAL_CARE_INSTITUTIONPersonal care institution.
RNHMSSite.HwLocationType.PERSONAL_SERVICE_CENTERPersonal service center.
RNHMSSite.HwLocationType.PERUVIAN_RESTAURANTPeruvian restaurant.
RNHMSSite.HwLocationType.PET_STOREPet store.
RNHMSSite.HwLocationType.PET_SUPPLY_STOREPet supply store.
RNHMSSite.HwLocationType.PETROL_STATIONPetrol station.
RNHMSSite.HwLocationType.PHARMACEUTICAL_COMPANYPharmaceutical company.
RNHMSSite.HwLocationType.PHARMACYPharmacy.
RNHMSSite.HwLocationType.PHOTO_SHOPPhoto shop.
RNHMSSite.HwLocationType.PHOTOCOPY_SHOPPhotocopy shop.
RNHMSSite.HwLocationType.PHOTOGRAPHIC_EQUIPMENT_STOREPhotographic equipment store.
RNHMSSite.HwLocationType.PHYSIOTHERAPY_CLINICPhysiotherapy clinic.
RNHMSSite.HwLocationType.PICK_UP_AND_RETURN_POINTPick up and return point.
RNHMSSite.HwLocationType.PICNIC_AREAPicnic area.
RNHMSSite.HwLocationType.PIZZA_RESTAURANTPizza restaurant.
RNHMSSite.HwLocationType.PLACE_OF_WORSHIPPlace of worship.
RNHMSSite.HwLocationType.PLAIN_FLATPlain flat.
RNHMSSite.HwLocationType.PLANETARIUMPlanetarium.
RNHMSSite.HwLocationType.PLATEAUPlateau.
RNHMSSite.HwLocationType.POLICE_STATIONPolice station.
RNHMSSite.HwLocationType.POLISH_RESTAURANTPolish restaurant.
RNHMSSite.HwLocationType.POLYNESIAN_RESTAURANTPolynesian restaurant.
RNHMSSite.HwLocationType.PORT_WAREHOUSEPort warehouse.
RNHMSSite.HwLocationType.PORTUGUESE_RESTAURANTPortuguese restaurant.
RNHMSSite.HwLocationType.POST_OFFICEPost office.
RNHMSSite.HwLocationType.POSTAL_CODEPostal code.
RNHMSSite.HwLocationType.PRESCHOOLPreschool.
RNHMSSite.HwLocationType.PRESERVED_AREAPreserved area.
RNHMSSite.HwLocationType.PRIMARY_SCHOOLPrimary school.
RNHMSSite.HwLocationType.PRISONPrison.
RNHMSSite.HwLocationType.PRIVATE_AUTHORITYPrivate authority.
RNHMSSite.HwLocationType.PRIVATE_CLUBPrivate club.
RNHMSSite.HwLocationType.PRODUCER_COMPANYProducer company.
RNHMSSite.HwLocationType.PROTECTED_AREAProtected area.
RNHMSSite.HwLocationType.PROVENÇAL_RESTAURANTProvençal restaurant.
RNHMSSite.HwLocationType.PUBPub.
RNHMSSite.HwLocationType.PUB_FOODPub food.
RNHMSSite.HwLocationType.PUBLIC_AMENITYPublic amenity.
RNHMSSite.HwLocationType.PUBLIC_AUTHORITYPublic authority.
RNHMSSite.HwLocationType.PUBLIC_CALL_BOXPublic call box.
RNHMSSite.HwLocationType.PUBLIC_HEALTH_TECHNOLOGY_COMPANYPublic health technology company.
RNHMSSite.HwLocationType.PUBLIC_MARKETPublic market.
RNHMSSite.HwLocationType.PUBLIC_RESTROOMPublic restroom.
RNHMSSite.HwLocationType.PUBLIC_TRANSPORT_STOPPublic transport stop.
RNHMSSite.HwLocationType.PUBLISHING_TECHNOLOGY_COMPANYPublishing technology company.
RNHMSSite.HwLocationType.QUARRYQuarry.
RNHMSSite.HwLocationType.RACE_TRACKRace track.
RNHMSSite.HwLocationType.RAIL_FERRYRail ferry.
RNHMSSite.HwLocationType.RAILWAY_SIDINGRailway siding.
RNHMSSite.HwLocationType.RAILWAY_STATIONRailway station.
RNHMSSite.HwLocationType.RAPIDSRapids.
RNHMSSite.HwLocationType.REAL_ESTATE_AGENCY_COMPANYReal estate agency company.
RNHMSSite.HwLocationType.REAL_ESTATE_AGENCY_SHOPReal estate agency shop.
RNHMSSite.HwLocationType.RECREATION_AREARecreation area.
RNHMSSite.HwLocationType.RECREATIONAL_SITERecreational site.
RNHMSSite.HwLocationType.RECREATIONAL_VEHICLE_DEALERRecreational vehicle dealer.
RNHMSSite.HwLocationType.RECYCLING_SHOPRecycling shop.
RNHMSSite.HwLocationType.REEFReef.
RNHMSSite.HwLocationType.REGIONSRegions.
RNHMSSite.HwLocationType.REPAIR_SHOPRepair shop.
RNHMSSite.HwLocationType.RESEARCH_INSTITUTEResearch institute.
RNHMSSite.HwLocationType.RESERVOIRReservoir.
RNHMSSite.HwLocationType.RESIDENTIAL_ACCOMMODATIONResidential accommodation.
RNHMSSite.HwLocationType.RESIDENTIAL_ESTATEResidential estate.
RNHMSSite.HwLocationType.RESORTResort.
RNHMSSite.HwLocationType.REST_AREARest area.
RNHMSSite.HwLocationType.REST_CAMPSRest camps.
RNHMSSite.HwLocationType.RESTAURANTRestaurant.
RNHMSSite.HwLocationType.RESTAURANT_AREARestaurant area.
RNHMSSite.HwLocationType.RETAIL_OUTLETSRetail outlets.
RNHMSSite.HwLocationType.RETIREMENT_COMMUNITYRetirement community.
RNHMSSite.HwLocationType.RIDGERidge.
RNHMSSite.HwLocationType.RIVER_CROSSINGRiver crossing.
RNHMSSite.HwLocationType.ROAD_RESCUE_POINTRoad rescue point.
RNHMSSite.HwLocationType.ROADSIDERoadside.
RNHMSSite.HwLocationType.ROCK_CLIMBING_TRAILRock climbing trail.
RNHMSSite.HwLocationType.ROCKSRocks.
RNHMSSite.HwLocationType.ROMANIAN_RESTAURANTRomanian restaurant.
RNHMSSite.HwLocationType.ROUTERoute.
RNHMSSite.HwLocationType.RUGBY_GROUNDRugby ground.
RNHMSSite.HwLocationType.RUSSIAN_RESTAURANTRussian restaurant.
RNHMSSite.HwLocationType.SALAD_BARSalad bar.
RNHMSSite.HwLocationType.SANDWICH_RESTAURANTSandwich restaurant.
RNHMSSite.HwLocationType.SAUNA_SOLARIUM_MASSAGE_CENTERSauna solarium massage center.
RNHMSSite.HwLocationType.SAVINGS_INSTITUTIONSavings institution.
RNHMSSite.HwLocationType.SAVOYAN_RESTAURANTSavoyan restaurant.
RNHMSSite.HwLocationType.SCANDINAVIAN_RESTAURANTScandinavian restaurant.
RNHMSSite.HwLocationType.SCENIC_RIVER_AREAScenic river area.
RNHMSSite.HwLocationType.SCHOOLSchool.
RNHMSSite.HwLocationType.SCHOOL_BUS_SERVICE_COMPANYSchool bus service company.
RNHMSSite.HwLocationType.SCIENCE_MUSEUMScience museum.
RNHMSSite.HwLocationType.SCOTTISH_RESTAURANTScottish restaurant.
RNHMSSite.HwLocationType.SEAFOOD_RESTAURANTSeafood restaurant.
RNHMSSite.HwLocationType.SEASHORESeashore.
RNHMSSite.HwLocationType.SECURITY_GATESecurity gate.
RNHMSSite.HwLocationType.SECURITY_STORESecurity store.
RNHMSSite.HwLocationType.SENIOR_HIGH_SCHOOLSenior high school.
RNHMSSite.HwLocationType.SERVICE_COMPANYService company.
RNHMSSite.HwLocationType.SHANDONG_RESTAURANTShandong restaurant.
RNHMSSite.HwLocationType.SHANGHAI_RESTAURANTShanghai restaurant.
RNHMSSite.HwLocationType.SHINTO_SHRINEShinto shrine.
RNHMSSite.HwLocationType.SHOOTING_RANGEShooting range.
RNHMSSite.HwLocationType.SHOPShop.
RNHMSSite.HwLocationType.SHOPPINGShopping.
RNHMSSite.HwLocationType.SHOPPING_CENTERShopping center.
RNHMSSite.HwLocationType.SHOPPING_SERVICE_CENTERShopping service center.
RNHMSSite.HwLocationType.SICHUAN_RESTAURANTSichuan restaurant.
RNHMSSite.HwLocationType.SICILIAN_RESTAURANTSicilian restaurant.
RNHMSSite.HwLocationType.SKI_LIFTSki lift.
RNHMSSite.HwLocationType.SKI_RESORTSki resort.
RNHMSSite.HwLocationType.SLAVIC_RESTAURANTSlavic restaurant.
RNHMSSite.HwLocationType.SLOVAK_RESTAURANTSlovak restaurant.
RNHMSSite.HwLocationType.SNACKSSnacks.
RNHMSSite.HwLocationType.SNOOKER_POOL_BILLIARD_HALLSnooker pool billiard hall.
RNHMSSite.HwLocationType.SOCCER_FIELDSoccer field.
RNHMSSite.HwLocationType.SOUL_FOOD_RESTAURANTSoul food restaurant.
RNHMSSite.HwLocationType.SOUP_RESTAURANTSoup restaurant.
RNHMSSite.HwLocationType.SPASpa.
RNHMSSite.HwLocationType.SPANISH_RESTAURANTSpanish restaurant.
RNHMSSite.HwLocationType.SPECIAL_SCHOOLSpecial school.
RNHMSSite.HwLocationType.SPECIALIST_CLINICSpecialist clinic.
RNHMSSite.HwLocationType.SPECIALIZED_HOSPITALSpecialized hospital.
RNHMSSite.HwLocationType.SPECIALTY_FOOD_STORESpecialty food store.
RNHMSSite.HwLocationType.SPECIALTY_STORESpecialty store.
RNHMSSite.HwLocationType.SPORTSport.
RNHMSSite.HwLocationType.SPORTS_CENTERSports center.
RNHMSSite.HwLocationType.SPORTS_CENTER_SUBSports center sub.
RNHMSSite.HwLocationType.SPORTS_SCHOOLSports school.
RNHMSSite.HwLocationType.SPORTS_STORESports store.
RNHMSSite.HwLocationType.SQUASH_COURTSquash court.
RNHMSSite.HwLocationType.STADIUMStadium.
RNHMSSite.HwLocationType.STAMP_SHOPStamp shop.
RNHMSSite.HwLocationType.STATION_ACCESSStation access.
RNHMSSite.HwLocationType.STATUEStatue.
RNHMSSite.HwLocationType.STEAK_HOUSESteak house.
RNHMSSite.HwLocationType.STOCK_EXCHANGEStock exchange.
RNHMSSite.HwLocationType.STOREStore.
RNHMSSite.HwLocationType.STREET_ADDRESSStreet address.
RNHMSSite.HwLocationType.SUDANESE_RESTAURANTSudanese restaurant.
RNHMSSite.HwLocationType.SUPERMARKET_HYPERMARKETSupermarket hypermarket.
RNHMSSite.HwLocationType.SURINAMESE_RESTAURANTSurinamese restaurant.
RNHMSSite.HwLocationType.SUSHI_RESTAURANTSushi restaurant.
RNHMSSite.HwLocationType.SWEDISH_RESTAURANTSwedish restaurant.
RNHMSSite.HwLocationType.SWIMMING_POOLSwimming pool.
RNHMSSite.HwLocationType.SWISS_RESTAURANTSwiss restaurant.
RNHMSSite.HwLocationType.SYNAGOGUESynagogue.
RNHMSSite.HwLocationType.SYRIAN_RESTAURANTSyrian restaurant.
RNHMSSite.HwLocationType.TABLE_TENNIS_HALLTable tennis hall.
RNHMSSite.HwLocationType.TAILOR_SHOPTailor shop.
RNHMSSite.HwLocationType.TAIWANESE_RESTAURANTTaiwanese restaurant.
RNHMSSite.HwLocationType.TAKE_AWAY_RESTAURANTTake away restaurant.
RNHMSSite.HwLocationType.TAPAS_RESTAURANTTapas restaurant.
RNHMSSite.HwLocationType.TAX_SERVICE_COMPANYTax service company.
RNHMSSite.HwLocationType.TAXI_LIMOUSINE_SHUTTLE_SERVICE_COMPANYTaxi limousine shuttle service company.
RNHMSSite.HwLocationType.TAXI_STANDTaxi stand.
RNHMSSite.HwLocationType.TEA_HOUSETea house.
RNHMSSite.HwLocationType.TECHNICAL_SCHOOLTechnical school.
RNHMSSite.HwLocationType.TELECOMMUNICATIONS_COMPANYTelecommunications company.
RNHMSSite.HwLocationType.TEMPLETemple.
RNHMSSite.HwLocationType.TENNIS_COURTTennis court.
RNHMSSite.HwLocationType.TEPPANYAKKI_RESTAURANTTeppanyakki restaurant.
RNHMSSite.HwLocationType.TERMINALTerminal.
RNHMSSite.HwLocationType.THAI_RESTAURANTThai restaurant.
RNHMSSite.HwLocationType.THEATERTheater.
RNHMSSite.HwLocationType.THEATER_SUBTheater sub.
RNHMSSite.HwLocationType.THEMED_SPORTS_HALLThemed sports hall.
RNHMSSite.HwLocationType.THREE_STAR_HOTELThree star hotel.
RNHMSSite.HwLocationType.TIBETAN_RESTAURANTTibetan restaurant.

|RNHMSSite.HwLocationType.TIRE_REPAIR_S

1.0.18

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago