Ticket T980392
Visible to All Users

WinForms - Maps in VB.NET

created 4 years ago (modified 4 years ago)

[DevExpress Support Team: CLONED FROM T287322: WinForms - How to display geospatial information in XAF Views using Google, Bing or OpenStreet maps]

Hi,

I have got this to work sucesffully in XAF and vb.net based off this exampled and attached project, using my own custom class with the exception of one line of code

View.CurrentObjectChanged += (s, e) => {
CenterPointOnMap(map, ViewCurrentObject);

Is there a equivalent way to add this in VB.net?

When the object is saved the latitude and longitude are updated via geocoding which works fine but I need that event to fire to update the location on the map

Thanks

Answers approved by DevExpress Support

created 4 years ago

Hello, Adam.

I believe that you can use the following in VB.NET:

Visual Basic
AddHandler View.CurrentObjectChanged, Sub(s, e) CenterPointOnMap(map, ViewCurrentObject) End Sub

For more information, review the following concepts:

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.