Andrew Niese asked 2017-08-03 00:46:27 UTC
On FireFox mobile, when clicking some HTML in a marker's InfoWindow that contains role information, the .MouseClick event does not detect e.Role (It's null). In Chrome, it properly detects it as "edititem"...
Private Sub mobjGoogleMap_MouseClick(sender As Object, e As MouseEventArgs) Handles mobjGoogleMap.MouseClick
If e.Role = "edititem" Then
'do something
End If
End Sub
InfoWindow contents: (example)
strInfoWindowHTML ="
 | #7 : "K and M plant overgrowth blocking sidewalk."
|
"
InfoWindow invocation:
Me.mobjGoogleMap.ShowInfoWindow(intIndex.ToString, Me.ilIssues.issues(intIndex).strInfoWindowHTML)
Andrew Niese asked 2017-08-03 00:46:27 UTC
On FireFox mobile, when clicking some HTML in a marker's InfoWindow that contains role information, the .MouseClick event does not detect e.Role (It's null). In Chrome, it properly detects it as "edititem"...
Private Sub mobjGoogleMap_MouseClick(sender As Object, e As MouseEventArgs) Handles mobjGoogleMap.MouseClick
If e.Role = "edititem" Then
'do something
End If
End Sub
InfoWindow contents: (example)
strInfoWindowHTML ="
InfoWindow invocation:
Me.mobjGoogleMap.ShowInfoWindow(intIndex.ToString, Me.ilIssues.issues(intIndex).strInfoWindowHTML)