Fetch multiple features by type and ID
elements.batch(**kwargs) -> FeatureCollection { features, type }
POST/api/v1/features/batch
Fetch multiple features by type and ID
require "plaza"
plaza = Plaza::Client.new(
api_key: "My API Key",
environment: "local" # defaults to "production"
)
feature_collection = plaza.elements.batch(elements: [{id: 0, type: :node}])
puts(feature_collection)