Get feature by type and ID
elements.retrieve(id, **kwargs) -> GeoJsonFeature { geometry, properties, type, 2 more }
GET/api/v1/features/{type}/{id}
Get feature by type and ID
require "plaza"
plaza = Plaza::Client.new(
api_key: "My API Key",
environment: "local" # defaults to "production"
)
geo_json_feature = plaza.elements.retrieve(0, type: "type")
puts(geo_json_feature)