You have not said whether these addresses will be static or not.
If it's static, you can do this:
Search for each location on the google maps website and adjust the zoom level, terrain type, and so on.
>
Click Embed Map, make the necessary adjustments, and copy the generated code. Do this for each address.
Add to your form a WebView and every time you click on an address you call the function below passing as a parameter the code generated by each address in google.
In this way WebView will only display the portion of the map you have chosen
Code:
public void updateWebView(string codigoIncorporado)
{
webBrowser1.Refresh();
var str = "<html><head></head><body>" + codigoIncorporado + "</body></html>";
webBrowser1.DocumentText = str;
}