Find features near a geographic point
elements.nearby(**kwargs) -> FeatureCollection { features, type }
GET/api/v1/features/nearby
Find features near a geographic point
Find features near a geographic point
require "plaza"
plaza = Plaza::Client.new(
api_key: "My API Key",
environment: "local" # defaults to "production"
)
feature_collection = plaza.elements.nearby(lat: 0, lng: 0)
puts(feature_collection)