You need to use aHrefSanitizationWhitelist([regexp]);
regex should match the url of your's So in your case it should be like
$compileProvider.aHrefSanitizationWhitelist(/^\s*(geo):/);
regEx:- starting with geo followed by ' : '
Please see $compileProvider Documentation for more info.
Plunker