aws-sdk-geomaps 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-geomaps/client.rb +9 -15
- data/lib/aws-sdk-geomaps/types.rb +6 -12
- data/lib/aws-sdk-geomaps.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 358e1b6d9ee9987d5859f8cabeaf89ff90bca4e70c828f57f1b99d53090ed63a
|
|
4
|
+
data.tar.gz: '075940db68f8b52da8ea1b35aee793938e1693cc4b89f2f24f41312403f82463'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbcd2ccc3cb45fac7bf877f7f04079ccae5965c9e3b605fd18d6d45f44b1d736caee5f9a067843c82867d2cdae5e76418405d6bfd2ef1336c40509adc84acbff
|
|
7
|
+
data.tar.gz: 887f36820701acdaa9bed7162b0c7318bf498b253f0ac3a962a36f9314ffd83b7b30bca23e3a6595c400dba207b8eec0f242ed148c05eb5579f5f501bb62348a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.23.0 (2026-03-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release expands map customization options with adjustable contour line density, dark mode support for Hybrid and Satellite views, enhanced traffic information across multiple map styles, and transit and truck travel modes for Monochrome and Hybrid map styles.
|
|
8
|
+
|
|
4
9
|
1.22.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.23.0
|
|
@@ -708,9 +708,7 @@ module Aws::GeoMaps
|
|
|
708
708
|
# Style specifies the desired map style for the `Sprites` APIs.
|
|
709
709
|
#
|
|
710
710
|
# @option params [required, String] :color_scheme
|
|
711
|
-
# Sets color tone for map such as dark and light
|
|
712
|
-
# styles. It applies to only vector map styles such as Standard and
|
|
713
|
-
# Monochrome.
|
|
711
|
+
# Sets the color tone for the map sprites, such as dark and light.
|
|
714
712
|
#
|
|
715
713
|
# Example: `Light`
|
|
716
714
|
#
|
|
@@ -814,8 +812,7 @@ module Aws::GeoMaps
|
|
|
814
812
|
# Example: 49.295,-123.108
|
|
815
813
|
#
|
|
816
814
|
# @option params [String] :color_scheme
|
|
817
|
-
# Sets color tone for map, such as dark and light
|
|
818
|
-
# styles. It only applies to vector map styles, such as Standard.
|
|
815
|
+
# Sets the color tone for the map, such as dark and light.
|
|
819
816
|
#
|
|
820
817
|
# Example: `Light`
|
|
821
818
|
#
|
|
@@ -1161,9 +1158,7 @@ module Aws::GeoMaps
|
|
|
1161
1158
|
# Style specifies the desired map style.
|
|
1162
1159
|
#
|
|
1163
1160
|
# @option params [String] :color_scheme
|
|
1164
|
-
# Sets color tone for map such as dark and light
|
|
1165
|
-
# styles. It applies to only vector map styles such as Standard and
|
|
1166
|
-
# Monochrome.
|
|
1161
|
+
# Sets the color tone for the map, such as dark and light.
|
|
1167
1162
|
#
|
|
1168
1163
|
# Example: `Light`
|
|
1169
1164
|
#
|
|
@@ -1229,14 +1224,13 @@ module Aws::GeoMaps
|
|
|
1229
1224
|
# lines. The density value controls how densely the available contour
|
|
1230
1225
|
# line information is rendered on the map.
|
|
1231
1226
|
#
|
|
1232
|
-
# This parameter is valid
|
|
1233
|
-
# `Hybrid` map styles.
|
|
1227
|
+
# This parameter is valid for all map styles except `Satellite`.
|
|
1234
1228
|
#
|
|
1235
1229
|
# @option params [String] :traffic
|
|
1236
1230
|
# Displays real-time traffic information overlay on map, such as
|
|
1237
1231
|
# incident events and flow events.
|
|
1238
1232
|
#
|
|
1239
|
-
# This parameter is valid
|
|
1233
|
+
# This parameter is valid for all map styles except `Satellite`.
|
|
1240
1234
|
#
|
|
1241
1235
|
# @option params [Array<String>] :travel_modes
|
|
1242
1236
|
# Renders additional map information relevant to selected travel modes.
|
|
@@ -1244,7 +1238,7 @@ module Aws::GeoMaps
|
|
|
1244
1238
|
# although this increases the overall information density rendered on
|
|
1245
1239
|
# the map.
|
|
1246
1240
|
#
|
|
1247
|
-
# This parameter is valid
|
|
1241
|
+
# This parameter is valid for all map styles except `Satellite`.
|
|
1248
1242
|
#
|
|
1249
1243
|
# @option params [String] :buildings
|
|
1250
1244
|
# Adjusts how building details are rendered on the map.
|
|
@@ -1277,8 +1271,8 @@ module Aws::GeoMaps
|
|
|
1277
1271
|
# color_scheme: "Light", # accepts Light, Dark
|
|
1278
1272
|
# political_view: "CountryCode",
|
|
1279
1273
|
# terrain: "Hillshade", # accepts Hillshade, Terrain3D
|
|
1280
|
-
# contour_density: "
|
|
1281
|
-
# traffic: "All", # accepts All
|
|
1274
|
+
# contour_density: "Low", # accepts Low, Medium, High
|
|
1275
|
+
# traffic: "All", # accepts All, Congestion
|
|
1282
1276
|
# travel_modes: ["Transit"], # accepts Transit, Truck
|
|
1283
1277
|
# buildings: "Buildings3D", # accepts Buildings3D
|
|
1284
1278
|
# key: "ApiKey",
|
|
@@ -1388,7 +1382,7 @@ module Aws::GeoMaps
|
|
|
1388
1382
|
tracer: tracer
|
|
1389
1383
|
)
|
|
1390
1384
|
context[:gem_name] = 'aws-sdk-geomaps'
|
|
1391
|
-
context[:gem_version] = '1.
|
|
1385
|
+
context[:gem_version] = '1.23.0'
|
|
1392
1386
|
Seahorse::Client::Request.new(handlers, context)
|
|
1393
1387
|
end
|
|
1394
1388
|
|
|
@@ -249,9 +249,7 @@ module Aws::GeoMaps
|
|
|
249
249
|
# @return [String]
|
|
250
250
|
#
|
|
251
251
|
# @!attribute [rw] color_scheme
|
|
252
|
-
# Sets color tone for map such as dark and light
|
|
253
|
-
# styles. It applies to only vector map styles such as Standard and
|
|
254
|
-
# Monochrome.
|
|
252
|
+
# Sets the color tone for the map sprites, such as dark and light.
|
|
255
253
|
#
|
|
256
254
|
# Example: `Light`
|
|
257
255
|
#
|
|
@@ -349,8 +347,7 @@ module Aws::GeoMaps
|
|
|
349
347
|
# @return [String]
|
|
350
348
|
#
|
|
351
349
|
# @!attribute [rw] color_scheme
|
|
352
|
-
# Sets color tone for map, such as dark and light
|
|
353
|
-
# styles. It only applies to vector map styles, such as Standard.
|
|
350
|
+
# Sets the color tone for the map, such as dark and light.
|
|
354
351
|
#
|
|
355
352
|
# Example: `Light`
|
|
356
353
|
#
|
|
@@ -717,9 +714,7 @@ module Aws::GeoMaps
|
|
|
717
714
|
# @return [String]
|
|
718
715
|
#
|
|
719
716
|
# @!attribute [rw] color_scheme
|
|
720
|
-
# Sets color tone for map such as dark and light
|
|
721
|
-
# styles. It applies to only vector map styles such as Standard and
|
|
722
|
-
# Monochrome.
|
|
717
|
+
# Sets the color tone for the map, such as dark and light.
|
|
723
718
|
#
|
|
724
719
|
# Example: `Light`
|
|
725
720
|
#
|
|
@@ -788,15 +783,14 @@ module Aws::GeoMaps
|
|
|
788
783
|
# lines. The density value controls how densely the available contour
|
|
789
784
|
# line information is rendered on the map.
|
|
790
785
|
#
|
|
791
|
-
# This parameter is valid
|
|
792
|
-
# `Hybrid` map styles.
|
|
786
|
+
# This parameter is valid for all map styles except `Satellite`.
|
|
793
787
|
# @return [String]
|
|
794
788
|
#
|
|
795
789
|
# @!attribute [rw] traffic
|
|
796
790
|
# Displays real-time traffic information overlay on map, such as
|
|
797
791
|
# incident events and flow events.
|
|
798
792
|
#
|
|
799
|
-
# This parameter is valid
|
|
793
|
+
# This parameter is valid for all map styles except `Satellite`.
|
|
800
794
|
# @return [String]
|
|
801
795
|
#
|
|
802
796
|
# @!attribute [rw] travel_modes
|
|
@@ -805,7 +799,7 @@ module Aws::GeoMaps
|
|
|
805
799
|
# simultaneously, although this increases the overall information
|
|
806
800
|
# density rendered on the map.
|
|
807
801
|
#
|
|
808
|
-
# This parameter is valid
|
|
802
|
+
# This parameter is valid for all map styles except `Satellite`.
|
|
809
803
|
# @return [Array<String>]
|
|
810
804
|
#
|
|
811
805
|
# @!attribute [rw] buildings
|
data/lib/aws-sdk-geomaps.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -154,8 +154,8 @@ module Aws
|
|
|
154
154
|
?color_scheme: ("Light" | "Dark"),
|
|
155
155
|
?political_view: ::String,
|
|
156
156
|
?terrain: ("Hillshade" | "Terrain3D"),
|
|
157
|
-
?contour_density: ("Medium"),
|
|
158
|
-
?traffic: ("All"),
|
|
157
|
+
?contour_density: ("Low" | "Medium" | "High"),
|
|
158
|
+
?traffic: ("All" | "Congestion"),
|
|
159
159
|
?travel_modes: Array[("Transit" | "Truck")],
|
|
160
160
|
?buildings: ("Buildings3D"),
|
|
161
161
|
?key: ::String
|
data/sig/types.rbs
CHANGED
|
@@ -81,8 +81,8 @@ module Aws::GeoMaps
|
|
|
81
81
|
attr_accessor color_scheme: ("Light" | "Dark")
|
|
82
82
|
attr_accessor political_view: ::String
|
|
83
83
|
attr_accessor terrain: ("Hillshade" | "Terrain3D")
|
|
84
|
-
attr_accessor contour_density: ("Medium")
|
|
85
|
-
attr_accessor traffic: ("All")
|
|
84
|
+
attr_accessor contour_density: ("Low" | "Medium" | "High")
|
|
85
|
+
attr_accessor traffic: ("All" | "Congestion")
|
|
86
86
|
attr_accessor travel_modes: ::Array[("Transit" | "Truck")]
|
|
87
87
|
attr_accessor buildings: ("Buildings3D")
|
|
88
88
|
attr_accessor key: ::String
|