'DEVExpress DXmap: how to refresh to current location (longitude and latitude)?

When I open my page in google maps with dxmaps, it refreshes automatically to a set location (ML_LATITUDE, ML_LONGITUDE). This corresponds to numbers (like 35.18, 44.12). However, I want the program when to refresh, to remain in the same position that my screen (or cursor) is at. Here is the relevant code:

markers.push({
                          location: { lat: oData[item]['ML_LATITUDE'], lng: oData[item]['ML_LONGITUDE'] },
                          iconSrc: oData[item]['ICON'], //"Content/Icons/map-marker.png",
                          onClick: function (args) { },
                          tooltip: {
                              isShown: fisShown,
                              text: oData[item]['TOOLTIP']
                          }
                      });
                  }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source