In web application on connecting external map services borders of overlapping maps can be not matched. The cause why coordinates do not match:
The incorrect value of the proportionality="0.67" attribute that is in the topobase header part.
There is topobase georeferencing or setting is incorrect:
<p5:Geo>
<p5:GeoItem Latitude="83.608096" Longitude="-168.230659" X="0" Y="0"></p5:GeoItem>
<p5:GeoItem Longitude="-56.586816" Longitude="-169.636909" X="1" Y="1"></p5:GeoItem>
</p5:Geo>
To set up georeferencing, follow the steps:
Download the contents of the topobase in use to the file:
Select the object where the map is used in the desktop application in the object navigator
Open the Object Properties dialog box using the Properties context menu item
Go to the Consists Of tab, select the map and click the Go Object button. The folder where the map in use opens
Using the Save to File context menu item, download the map contents to the SVG format file on local resource.
Open downloaded file with a text editor and change the proportionality attribute value to 0.6, for example:
<svg version="1.1" xmlns:p5="http://www.prognoz.ru" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="988.52px" height="593.97px" proportionality="0.6" xml:space="preserve">
NOTE. In some cases, to overlap borders, it is required to execute only two first steps. Save file with topobase, go to the step 9 and check how borders are displayed.
Copy file contents.
Open the https://www.google.com/maps service:
Go to the developer mode using CTRL+SHIFT+J
In the Elements section go to the edit mode using the Edit as HTML context menu item
Paste copied contents of the file with map to the <body> tag end
Exit the edit mode.

NOTE: On selecting the pasted text, Google map will display added map as a blue rectangle.
Go to the Style section and set styles of added map in order to make it visible against the Google map background:
position: absolute;
border: 1px solid red;
left: 300px;
top: 170px;
opacity: .4;
Match territories of pasted map and Google map, manually moving Google map.
NOTE. Preliminary reduce the Google map to the minimum size and deselect the Globus menu item.
After matching borders, click the top left and bottom right corner of the pasted map, the coordinates of the (0;0) and (1;1) points on Google map. Record them to further insert them to topobase.

Insert obtained coordinates for the (0;0) and (1;1) points to the topobase file in the <p5:MetaInfo> section, for example:
<p5:MetaInfo>
<p5:Geo>
<p5:GeoItem Latitude="81.509077" Longitude="17.877862" X="0" Y="0"></p5:GeoItem>
<p5:GeoItem Latitude="40.265518" Longitude="-168.445904" X="1" Y="1"></p5:GeoItem>
</p5:Geo>
To replace topobase data, select the Load from File topobase context menu item in the object navigator of desktop application.
Open web application and check the topobase and Google map borders match.
See also: