Status Update
Comments
d....@gtempaccount.com <d....@gtempaccount.com> #2
This is to confirm that we plan to resume the rollout of the new cross-signed root CA certificate as described in
The rollout will be very gradual, with incremental launches across the Google Maps Platform services and regions, and its phases will proceed depending on engineering evaluations rather than by a defined timetable. The change will be transparent to the vast majority of Google Maps Platform API clients, including all mainstream maintained OS versions.
For more information, please see the FAQ resources listed in
d....@gtempaccount.com <d....@gtempaccount.com> #3
At this stage, the best course of action is to ensure that your client TLS stack can dynamically work with intermediary certificates signed by any of the (~40) root CAs from
In other words, the root CA signing intermediary certificates for requests to
We have published FAQs at the following addresses:
bb...@gmail.com <bb...@gmail.com> #4
Here are several sources that can be used to help you split the root.pem file into 1 file per certificate, if required by your tooling and software environment:
-
-
-
As an immediate fix to get your Google Maps Platform requests working again, the main certificate to install is the "GTS Root R1" certificate, which begins at line 896 in the current roots.pem file. Please note that this issue may reoccur in the future if you don't install all the certificates.
bb...@gmail.com <bb...@gmail.com> #5
To help customers using Java or Mozilla NSS, we have updated the Java keytool
and NSS certutil
sections in our
d....@gtempaccount.com <d....@gtempaccount.com> #6
Dear developers, the new GTS Root R1 Cross certificates have now fully rolled out to all Google Maps Platform services.
d....@gtempaccount.com <d....@gtempaccount.com> #7
using the one provided by the OverlayView class?
ta...@gmail.com <ta...@gmail.com> #8
I/we use (and would like in v3) "fromContainerPixelToLatLng". We use it specifically
to get a wider bounds for populating map markers.
In more detail:
When a user views a map, we create a buffer -- let's say 200 extra pixels on all
sides, and use the corresponding lat/lng bounds to get a set of data points within
the map through AJAX. This way when a user moves the map just a little within the 200
pixel buffer we don't have to do another AJAX request. It's essentially just a box
outside of the box. Without "fromContainerPixelToLatLng" we can't get accurate
lat/lng for the buffer box.
Correct me if I'm wrong, but wouldn't creating an Overlay (at least as described in
your examples) just be unnecessary overhead?
d....@gtempaccount.com <d....@gtempaccount.com> #9
viewport over a map. Granted this isn't the intended use case for an OverlayView (is
more of a custom control), it's certainly doable.
Check out the example I hacked up:
d....@gtempaccount.com <d....@gtempaccount.com> #11
resolve this.
pa...@gmail.com <pa...@gmail.com> #12
1523 is about converting absolute screen pixel coordinate into LatLng coordinates,
while 1794 is about getting map offset data from API to get absolute pixel
coordinates. While I may want to have LatLng in some cases, in other cases I do not
(for example, if I operate with tiles). Although it's possible to convert LatLng back
to pixels I'd like to avoid this unnecessary step.
pa...@gmail.com <pa...@gmail.com> #13
combine their ratings (as long as they are from different users).
d....@gtempaccount.com <d....@gtempaccount.com> #14
ability to convert pixel coordinates relative to the developer provided map canvas
container to lat/lng coordinates on the map and vice versa. With this capability
added, you can then calculate absolute pixel coordinates, etc.
I understand the request. However, I'm still not understanding what it is you're
specifically trying to do and why. For instance, if your intent is to position an
HTML container of some kind relative to the map canvas container you provided, for
what scenario would you ever need to translate these coordinates to lat/lng on the
map? Are you seeking to place a fixed position HTML container over the map which
doesn't move as the map is dragged? Even in this case, why do you need to calculate
the lat/lng coordinates underneath it?
It's important to note the v3 API doesn't yet support custom tile overlays nor does
it support custom map controls. These should not be part of your justification to
add this feature and are instead completely separate feature requests. In other
words, I'm trying to isolate what it is you really want from the API. This request
sounds more like a workaround to add a feature not currently supported by the API,
e.g. custom controls/tiles.
Please followup with any comments on this issue.
ta...@gmail.com <ta...@gmail.com> #15
take a look at it today and report back. I can say, however, that my portion of this
feature request has nothing to do with custom controls/tiler and everything to do with
marker management. Thanks!
fe...@gmail.com <fe...@gmail.com> #16
How can I get bounds coordinates (four LatLng corners) by center's LatLng point,
width and height in pixels and zoom level?
I must calculate them on a server side - no javascript can be used.
"fromContainerPixelToLatLng" math formulas will be the best way.
Description
different values since its not evenly spreaded.
Making this feature available in v3 will make it possible for MarkerManager
to work, and perhaps there are more applications who really need this. I've
talked to Berry Ratliff and he has had limited succes in implementing his
own version.
The implementation of Berry can been seen here: