混搭和 SharePoint
SO 中的有人可以向我提供有关与 SharePoint 平台相关的企业混搭和技术的资源列表吗?
更新(根据评论中@Spoon16的建议):- 混搭应用程序通常可以从 SharePoint 站点检索联系人列表,并在地图(也可能是 Google 地图)上显示所选联系人的地址。
Can somebody in SO please provide me with a list of resources about Enterprise Mashups and technologies related to SharePoint platform?
Update (as per suggestion of @Spoon16 in the comments):-
The mashup application may typically retrieve a list of contacts from a SharePoint site and display the address of a selected contact person on a map (again maybe Google maps).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有多种不同的方法可以将外部信息提取到 SharePoint 中。
要在外部应用程序中混合 SharePoint 数据:
要在 SharePoint 内部混合外部数据源:
SharePoint 具有 广泛的开发框架,使您能够利用 .NET 框架的全部功能来实现您最疯狂的混搭梦想。 如果您愿意,您甚至可以向 SharePoint 添加其他服务,以自定义方式公开基础数据(开箱即用 Web 服务未涵盖)。
There are a number of different ways to pull external information into SharePoint.
For mashing up SharePoint data in external applications:
For mashing up external data sources inside of SharePoint:
SharePoint has an extensive development framework that enables you to leverage the full capabilities of the .NET framework to make your wildest mashup dreams come true. You can use even add additional services to SharePoint that expose the underlying data in custom ways (not covered by the Out of the Box web services) if you like.
此外,还可以自定义列表视图,以便使用 Google 地图 呈现地图。
解决方案描述
使用自定义列表来存储地理位置并在地图上将其可视化。 自定义列表基于具有自定义内容类型和渲染地图的视图的通用列表。
地图列表视图是使用自定义 XSLT 样式表和地图 JavaScript 渲染控制来实现的。
有关实施详细信息,请遵循帖子 将地图功能引入 SharePoint 2010:呈现地图列表视图
用法
对于指定的解决方案,我们只需要创建用于存储联系人的 List 实例并填充它。
保存地理位置的表格
地图列表视图
Also it is possible to customize List View in order to render Map using Google Maps.
Solution description
For storing geographical locations and visualizing it on Map is used Custom List. Custom List is based on Generic List with Custom Content Type and with View to render Map.
Map List View is implemented using custom XSLT style sheet and JavaScript rendering control for Map.
For implementation details please follow post Bringing Map functionality into SharePoint 2010: Rendering Map List View
Usage
For specified solution we only need to create List instance for storing contacts and populate it.
Form for saving of geographical locations
Map List View