@goparrot/geocoder
Version:
TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom
15 lines (14 loc) • 366 B
TypeScript
export declare enum TravelModeEnum {
/**
* walking via pedestrian paths & sidewalks (where available)
*/
WALKING = "WALKING",
/**
* bicycling via bicycle paths & preferred streets (where available).
*/
BICYCLING = "BICYCLING",
/**
* indicates distance calculation using the road network
*/
DRIVING = "DRIVING"
}