Table of Contents

Class GoogleMyMapsHelper

Namespace
SunamoGoogleMyMaps
Assembly
SunamoGoogleMyMaps.dll

Helper class for creating exports compatible with Google My Maps import format

public class GoogleMyMapsHelper
Inheritance
GoogleMyMapsHelper
Inherited Members
Extension Methods

Methods

CreateExportForGoogleMyMaps(Dictionary<string, string>)

Creates a tab-delimited export string from a dictionary of key-value pairs for Google My Maps import. The first element represents the header (typically "Name" and "Address").

public static string CreateExportForGoogleMyMaps(Dictionary<string, string> dictionary)

Parameters

dictionary Dictionary<string, string>

Dictionary containing key-value pairs where key is the name and value is the address or description

Returns

string

Tab-delimited string suitable for Google My Maps import

CreateForGoogleMyMapsFromAddressRow(string, string, bool)

Creates a Google My Maps compatible string from address row data. This method will be implemented in future versions.

public static string CreateForGoogleMyMapsFromAddressRow(string city, string addressData, bool isAllowingEmptyCity)

Parameters

city string

The city name

addressData string

Clipboard content containing address data

isAllowingEmptyCity bool

Whether to allow empty city values

Returns

string

Formatted string for Google My Maps

Exceptions

NotImplementedException

This method is not yet implemented