Question
How to plot two sets of latitude and longitude coordinates.NOTE: The sets of latitude and longitude data need to be in different tables in the same data source.
SELECT [MapPoints1$].[Location_Name] AS [Location_Name],
[MapPoints1$].[Latitude] AS [Latitude],
[MapPoints1$].[Longitude] AS [Longitude],
[MapPoints1$].[Type] AS [Type],
"A" as [Source]
FROM [MapPoints1$]
UNION
SELECT
[MapPoints2$].[Location_Place] AS [Location_Name],
[MapPoints2$].[Latitude] AS [Latitude],
[MapPoints2$].[Longitude] AS [Longitude],
[MapPoints2$].[TypeOfPlace] AS [Type],
"B" as [Source]
FROM [MapPoints2$]