使用Swift在电子邮件中嵌入googlemaps

时间:2015-07-27 10:34:45

标签: ios swift google-maps email ios8

我尝试做的是构建简单的SOS(帮帮我!)应用程序。

将会有一个按钮,用于调用发送电子邮件表单。 目前,我正处于从设备获取位置的舞台上,并希望将其嵌入到将发送到电子邮件地址的电子邮件中。

我想在发送的邮件中使用谷歌地图的所有已知功能。 如果可能的话,我希望能够标记" X"在地图上的确切位置。 当我已经掌握了这个位置时怎么做?

我是swift和iOS的新手,所以欢迎任何改变设计的建议!

我到目前为止的代码是:

public class LegendViewModel : ViewModelBase
    {
        public object Content
        {
            get { return GetValue<object>("Content"); }
            set { SetValue("Content", value); }
        }

        public Brush Color
        {
            get { return GetValue<Brush>("Color"); }
            set { SetValue("Color", value); }
        }

        public LegendViewModel(object content, Brush color)
        {
            Content = content;
            Color = color;
        }
    }

感谢。

0 个答案:

没有答案